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