]> git.proxmox.com Git - rustc.git/blame - src/test/ui/raw/raw-literal-keywords.stderr
New upstream version 1.30.0+dfsg1
[rustc.git] / src / test / ui / raw / raw-literal-keywords.stderr
CommitLineData
0531ce1d 1error: expected one of `!`, `.`, `::`, `;`, `?`, `{`, `}`, or an operator, found `true`
b7449926 2 --> $DIR/raw-literal-keywords.rs:14:10
0531ce1d
XL
3 |
4LL | r#if true { } //~ ERROR found `true`
5 | ^^^^ expected one of 8 possible tokens here
6
7error: expected one of `!`, `.`, `::`, `;`, `?`, `{`, `}`, or an operator, found `Test`
b7449926 8 --> $DIR/raw-literal-keywords.rs:18:14
0531ce1d
XL
9 |
10LL | r#struct Test; //~ ERROR found `Test`
11 | ^^^^ expected one of 8 possible tokens here
12
13error: expected one of `!`, `.`, `::`, `;`, `?`, `{`, `}`, or an operator, found `Test`
b7449926 14 --> $DIR/raw-literal-keywords.rs:22:13
0531ce1d
XL
15 |
16LL | r#union Test; //~ ERROR found `Test`
17 | ^^^^ expected one of 8 possible tokens here
18
19error: aborting due to 3 previous errors
20