rust/src/test/ui/obsolete-in-place/bad.stderr

15 lines
360 B
Plaintext
Raw Normal View History

2019-05-13 16:19:19 -05:00
error: expected one of `!`, `.`, `::`, `;`, `?`, `{`, `}`, or an operator, found `<-`
--> $DIR/bad.rs:5:7
|
LL | x <- y;
| ^^ expected one of 8 possible tokens here
error: expected expression, found keyword `in`
--> $DIR/bad.rs:10:5
2019-05-13 16:19:19 -05:00
|
LL | in(foo) { bar };
| ^^ expected expression
error: aborting due to 2 previous errors
2019-05-13 16:19:19 -05:00