You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
zhendongsu opened this issue
Jul 12, 2017
· 2 comments
Labels
A-parserArea: The parsing of Rust source code to an ASTC-bugCategory: This is a bug.I-ICEIssue: The compiler panicked, giving an Internal Compilation Error (ICE) ❄️
$ rustc --version
rustc 1.20.0-nightly (bf0a9e0b4 2017-07-10)
$
$ rustc tmp.rs
error: expected expression, found `<eof>`
--> tmp.rs:1:26
|
1 | fn main () { let x = | } || ^
error: internal compiler error: attempted to bump the parser past EOF (may be stuck in a loop)
--> tmp.rs:1:26
|
1 | fn main () { let x = | } || ^
error: aborting due to 2 previous errors
$
$ rustc-1.18.0 tmp.rs
error: expected expression, found `<eof>`
--> tmp.rs:1:26
|
1 | fn main () { let x = | } || ^
error: internal compiler error: attempted to bump the parser past EOF (may be stuck in a loop)
--> tmp.rs:1:26
|
1 | fn main () { let x = | } || ^
error: aborting due to 2 previous errors
$
$ cat tmp.rs
fn main () { let x = | } |
$
The text was updated successfully, but these errors were encountered:
sfackler
added
A-parser
Area: The parsing of Rust source code to an AST
I-ICE
Issue: The compiler panicked, giving an Internal Compilation Error (ICE) ❄️
labels
Jul 12, 2017
A-parserArea: The parsing of Rust source code to an ASTC-bugCategory: This is a bug.I-ICEIssue: The compiler panicked, giving an Internal Compilation Error (ICE) ❄️
The text was updated successfully, but these errors were encountered: