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