rust/src/test/ui/parser-recovery-2.stderr

31 lines
774 B
Plaintext
Raw Normal View History

error: unexpected token: `;`
--> $DIR/parser-recovery-2.rs:12:15
|
2019-03-09 06:03:44 -06:00
LL | let x = y.;
| ^
2018-08-08 07:28:26 -05:00
error: incorrect close delimiter: `)`
2018-12-25 09:56:47 -06:00
--> $DIR/parser-recovery-2.rs:8:5
2018-08-08 07:28:26 -05:00
|
LL | fn bar() {
2018-08-26 19:22:36 -05:00
| - un-closed delimiter
2019-03-09 06:03:44 -06:00
LL | let x = foo();
LL | )
2018-08-14 20:04:20 -05:00
| ^ incorrect close delimiter
2018-08-08 07:28:26 -05:00
error[E0425]: cannot find function `foo` in this scope
2018-12-25 09:56:47 -06:00
--> $DIR/parser-recovery-2.rs:7:17
2018-08-08 07:28:26 -05:00
|
2019-03-09 06:03:44 -06:00
LL | let x = foo();
2018-08-08 07:28:26 -05:00
| ^^^ not found in this scope
error[E0425]: cannot find value `y` in this scope
2018-12-25 09:56:47 -06:00
--> $DIR/parser-recovery-2.rs:12:13
2018-08-08 07:28:26 -05:00
|
2019-03-09 06:03:44 -06:00
LL | let x = y.;
2018-08-08 07:28:26 -05:00
| ^ not found in this scope
error: aborting due to 4 previous errors
For more information about this error, try `rustc --explain E0425`.