rust/tests/ui/parser/parse-error-correct.stderr

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

34 lines
861 B
Plaintext
Raw Normal View History

2018-08-08 12:28:26 +00:00
error: unexpected token: `;`
2020-01-08 18:25:42 +00:00
--> $DIR/parse-error-correct.rs:6:15
2018-08-08 12:28:26 +00:00
|
2019-03-09 12:03:44 +00:00
LL | let x = y.;
2018-08-08 12:28:26 +00:00
| ^
error: unexpected token: `(`
2020-01-08 18:25:42 +00:00
--> $DIR/parse-error-correct.rs:7:15
2018-08-08 12:28:26 +00:00
|
2019-03-09 12:03:44 +00:00
LL | let x = y.();
2018-08-08 12:28:26 +00:00
| ^
error[E0618]: expected function, found `{integer}`
2020-01-08 18:25:42 +00:00
--> $DIR/parse-error-correct.rs:7:13
2018-08-08 12:28:26 +00:00
|
LL | let y = 42;
| - `y` has type `{integer}`
2019-03-09 12:03:44 +00:00
LL | let x = y.;
LL | let x = y.();
| ^---
| |
| call expression requires function
2018-08-08 12:28:26 +00:00
error[E0610]: `{integer}` is a primitive type and therefore doesn't have fields
2020-01-08 18:25:42 +00:00
--> $DIR/parse-error-correct.rs:9:15
2018-08-08 12:28:26 +00:00
|
2019-03-09 12:03:44 +00:00
LL | let x = y.foo;
2018-08-08 12:28:26 +00:00
| ^^^
error: aborting due to 4 previous errors
Some errors have detailed explanations: E0610, E0618.
2018-08-08 12:28:26 +00:00
For more information about an error, try `rustc --explain E0610`.