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;
|
2024-10-06 01:44:59 +00:00
|
|
|
| ^^^^^^^^^^^^^^ 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
|
|
|
|