]> git.proxmox.com Git - rustc.git/blob - src/test/ui/async-await/await-keyword/2018-edition-error-in-non-macro-position.stderr
Update upstream source from tag 'upstream/1.40.0+dfsg1'
[rustc.git] / src / test / ui / async-await / await-keyword / 2018-edition-error-in-non-macro-position.stderr
1 error: expected identifier, found keyword `await`
2 --> $DIR/2018-edition-error-in-non-macro-position.rs:6:13
3 |
4 LL | pub mod await {
5 | ^^^^^ expected identifier, found keyword
6 |
7 help: you can escape reserved keywords to use them as identifiers
8 |
9 LL | pub mod r#await {
10 | ^^^^^^^
11
12 error: expected identifier, found keyword `await`
13 --> $DIR/2018-edition-error-in-non-macro-position.rs:7:20
14 |
15 LL | pub struct await;
16 | ^^^^^ expected identifier, found keyword
17 |
18 help: you can escape reserved keywords to use them as identifiers
19 |
20 LL | pub struct r#await;
21 | ^^^^^^^
22
23 error: expected identifier, found keyword `await`
24 --> $DIR/2018-edition-error-in-non-macro-position.rs:10:22
25 |
26 LL | use self::outer_mod::await::await;
27 | ^^^^^ expected identifier, found keyword
28 |
29 help: you can escape reserved keywords to use them as identifiers
30 |
31 LL | use self::outer_mod::r#await::await;
32 | ^^^^^^^
33
34 error: expected identifier, found keyword `await`
35 --> $DIR/2018-edition-error-in-non-macro-position.rs:10:29
36 |
37 LL | use self::outer_mod::await::await;
38 | ^^^^^ expected identifier, found keyword
39 |
40 help: you can escape reserved keywords to use them as identifiers
41 |
42 LL | use self::outer_mod::await::r#await;
43 | ^^^^^^^
44
45 error: expected identifier, found keyword `await`
46 --> $DIR/2018-edition-error-in-non-macro-position.rs:13:14
47 |
48 LL | struct Foo { await: () }
49 | ^^^^^ expected identifier, found keyword
50 |
51 help: you can escape reserved keywords to use them as identifiers
52 |
53 LL | struct Foo { r#await: () }
54 | ^^^^^^^
55
56 error: expected identifier, found keyword `await`
57 --> $DIR/2018-edition-error-in-non-macro-position.rs:16:15
58 |
59 LL | impl Foo { fn await() {} }
60 | ^^^^^ expected identifier, found keyword
61 |
62 help: you can escape reserved keywords to use them as identifiers
63 |
64 LL | impl Foo { fn r#await() {} }
65 | ^^^^^^^
66
67 error: expected identifier, found keyword `await`
68 --> $DIR/2018-edition-error-in-non-macro-position.rs:19:14
69 |
70 LL | macro_rules! await {
71 | ^^^^^ expected identifier, found keyword
72 |
73 help: you can escape reserved keywords to use them as identifiers
74 |
75 LL | macro_rules! r#await {
76 | ^^^^^^^
77
78 error: aborting due to 7 previous errors
79