rust/src/test/ui/parser/raw/raw-literal-keywords.stderr

21 lines
765 B
Plaintext
Raw Normal View History

error: expected one of `!`, `.`, `::`, `;`, `?`, `{`, `}`, or an operator, found `true`
2018-12-25 09:56:47 -06:00
--> $DIR/raw-literal-keywords.rs:4:10
|
LL | r#if true { } //~ ERROR found `true`
| ^^^^ expected one of 8 possible tokens here
error: expected one of `!`, `.`, `::`, `;`, `?`, `{`, `}`, or an operator, found `Test`
2018-12-25 09:56:47 -06:00
--> $DIR/raw-literal-keywords.rs:8:14
|
LL | r#struct Test; //~ ERROR found `Test`
| ^^^^ expected one of 8 possible tokens here
error: expected one of `!`, `.`, `::`, `;`, `?`, `{`, `}`, or an operator, found `Test`
2018-12-25 09:56:47 -06:00
--> $DIR/raw-literal-keywords.rs:12:13
|
LL | r#union Test; //~ ERROR found `Test`
| ^^^^ expected one of 8 possible tokens here
error: aborting due to 3 previous errors