We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f34eae8 commit d65df5dCopy full SHA for d65df5d
src/librustsyntax/parse/parser.rs
@@ -706,7 +706,7 @@ fn maybe_parse_vstore(p: parser) -> option<ast::vstore> {
706
token::UNDERSCORE {
707
p.bump(); some(ast::vstore_fixed(none))
708
}
709
- token::LIT_INT(i, ast::ty_i) if i >= 0 {
+ token::LIT_INT(i, ast::ty_i) if i >= 0i64 {
710
p.bump(); some(ast::vstore_fixed(some(i as uint)))
711
712
token::BINOP(token::AND) {
0 commit comments