diff options
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 ('^') { |