Files
rust/tests/ui/parser/parser-recovery-2.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

31 lines
780 B
Plaintext
Raw Normal View History

error: unexpected token: `;`
2020-01-08 21:25:42 +03:00
--> $DIR/parser-recovery-2.rs:10:15
|
2019-03-09 15:03:44 +03:00
LL | let x = y.;
| ^
error: mismatched closing delimiter: `)`
--> $DIR/parser-recovery-2.rs:4:14
2018-08-08 14:28:26 +02:00
|
LL | fn bar() {
| ^ unclosed delimiter
2019-03-09 15:03:44 +03:00
LL | let x = foo();
LL | )
| ^ mismatched closing delimiter
2018-08-08 14:28:26 +02:00
error[E0425]: cannot find value `y` in this scope
2020-01-08 21:25:42 +03:00
--> $DIR/parser-recovery-2.rs:10:13
2018-08-08 14:28:26 +02:00
|
2019-03-09 15:03:44 +03:00
LL | let x = y.;
2018-08-08 14:28:26 +02:00
| ^ not found in this scope
error[E0425]: cannot find function `foo` in this scope
--> $DIR/parser-recovery-2.rs:5:17
|
LL | let x = foo();
| ^^^ not found in this scope
2018-08-08 14:28:26 +02:00
error: aborting due to 4 previous errors
For more information about this error, try `rustc --explain E0425`.