rust/tests/ui/parser/bad-name.stderr

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

23 lines
680 B
Plaintext
Raw Normal View History

2024-07-04 12:10:17 +00:00
error: field expressions cannot have generic arguments
--> $DIR/bad-name.rs:2:12
2018-10-20 20:36:17 +00:00
|
LL | let x.y::<isize>.z foo;
2024-07-04 12:10:17 +00:00
| ^^^^^^^
2018-10-20 20:36:17 +00:00
2024-07-04 12:10:17 +00:00
error: expected a pattern, found an expression
--> $DIR/bad-name.rs:2:7
|
LL | let x.y::<isize>.z foo;
| ^^^^^^^^^^^^^^ not a pattern
|
= note: arbitrary expressions are not allowed in patterns: <https://doc.rust-lang.org/book/ch18-00-patterns.html>
2024-07-04 12:10:17 +00:00
error: expected one of `(`, `.`, `::`, `:`, `;`, `=`, `?`, `|`, or an operator, found `foo`
--> $DIR/bad-name.rs:2:22
|
LL | let x.y::<isize>.z foo;
| ^^^ expected one of 9 possible tokens
error: aborting due to 3 previous errors
2018-10-20 20:36:17 +00:00