diff options
| author | Graydon Hoare <[email protected]> | 2010-11-22 11:35:00 -0800 |
|---|---|---|
| committer | Graydon Hoare <[email protected]> | 2010-11-22 11:35:00 -0800 |
| commit | ccc21fd4da49ed819d95eaea6599538071947cd4 (patch) | |
| tree | 4b1e8d383bf9e355bef2b33b6f5323feb97f4a72 /src/comp/front | |
| parent | More typeck hacking, check if and call exprs, enable fact and deep tests. (diff) | |
| download | rust-ccc21fd4da49ed819d95eaea6599538071947cd4.tar.xz rust-ccc21fd4da49ed819d95eaea6599538071947cd4.zip | |
Fix lexer bug, enable 5 more tests on rustc.
Diffstat (limited to 'src/comp/front')
| -rw-r--r-- | src/comp/front/lexer.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/comp/front/lexer.rs b/src/comp/front/lexer.rs index d2f308e3..38e9367f 100644 --- a/src/comp/front/lexer.rs +++ b/src/comp/front/lexer.rs @@ -572,7 +572,7 @@ impure fn next_token(reader rdr) -> token.token { } case ('/') { - ret binop(rdr, token.STAR); + ret binop(rdr, token.SLASH); } case ('^') { |