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