2019-09-28 09:15:06 -07:00
|
|
|
error: expected identifier, found keyword `await`
|
2019-08-02 03:48:43 +02:00
|
|
|
--> $DIR/2018-edition-error-in-non-macro-position.rs:6:13
|
2019-04-18 12:55:23 -07:00
|
|
|
|
|
|
|
|
LL | pub mod await {
|
2019-09-28 09:15:06 -07:00
|
|
|
| ^^^^^ expected identifier, found keyword
|
2019-10-23 22:20:58 -07:00
|
|
|
|
|
2022-01-27 14:53:39 -08:00
|
|
|
help: escape `await` to use it as an identifier
|
2019-04-18 12:55:23 -07:00
|
|
|
|
|
|
|
|
LL | pub mod r#await {
|
2022-01-27 14:53:39 -08:00
|
|
|
| ++
|
2019-04-18 12:55:23 -07:00
|
|
|
|
2019-09-28 09:15:06 -07:00
|
|
|
error: expected identifier, found keyword `await`
|
2019-08-02 03:48:43 +02:00
|
|
|
--> $DIR/2018-edition-error-in-non-macro-position.rs:7:20
|
2019-04-18 12:55:23 -07:00
|
|
|
|
|
|
|
|
LL | pub struct await;
|
2019-09-28 09:15:06 -07:00
|
|
|
| ^^^^^ expected identifier, found keyword
|
2019-10-23 22:20:58 -07:00
|
|
|
|
|
2022-01-27 14:53:39 -08:00
|
|
|
help: escape `await` to use it as an identifier
|
2019-04-18 12:55:23 -07:00
|
|
|
|
|
|
|
|
LL | pub struct r#await;
|
2022-01-27 14:53:39 -08:00
|
|
|
| ++
|
2019-04-18 12:55:23 -07:00
|
|
|
|
2019-09-28 09:15:06 -07:00
|
|
|
error: expected identifier, found keyword `await`
|
2019-08-02 03:48:43 +02:00
|
|
|
--> $DIR/2018-edition-error-in-non-macro-position.rs:10:22
|
2019-04-18 12:55:23 -07:00
|
|
|
|
|
|
|
|
LL | use self::outer_mod::await::await;
|
2019-09-28 09:15:06 -07:00
|
|
|
| ^^^^^ expected identifier, found keyword
|
2019-10-23 22:20:58 -07:00
|
|
|
|
|
2022-01-27 14:53:39 -08:00
|
|
|
help: escape `await` to use it as an identifier
|
2019-04-18 12:55:23 -07:00
|
|
|
|
|
|
|
|
LL | use self::outer_mod::r#await::await;
|
2022-01-27 14:53:39 -08:00
|
|
|
| ++
|
2019-04-18 12:55:23 -07:00
|
|
|
|
2019-09-28 09:15:06 -07:00
|
|
|
error: expected identifier, found keyword `await`
|
2019-08-02 03:48:43 +02:00
|
|
|
--> $DIR/2018-edition-error-in-non-macro-position.rs:10:29
|
2019-04-18 12:55:23 -07:00
|
|
|
|
|
|
|
|
LL | use self::outer_mod::await::await;
|
2019-09-28 09:15:06 -07:00
|
|
|
| ^^^^^ expected identifier, found keyword
|
2019-10-23 22:20:58 -07:00
|
|
|
|
|
2022-01-27 14:53:39 -08:00
|
|
|
help: escape `await` to use it as an identifier
|
2019-04-18 12:55:23 -07:00
|
|
|
|
|
|
|
|
LL | use self::outer_mod::await::r#await;
|
2022-01-27 14:53:39 -08:00
|
|
|
| ++
|
2019-04-18 12:55:23 -07:00
|
|
|
|
2019-09-28 09:15:06 -07:00
|
|
|
error: expected identifier, found keyword `await`
|
2019-08-02 03:48:43 +02:00
|
|
|
--> $DIR/2018-edition-error-in-non-macro-position.rs:13:14
|
2019-04-18 12:55:23 -07:00
|
|
|
|
|
|
|
|
LL | struct Foo { await: () }
|
2022-09-26 23:13:38 +09:00
|
|
|
| --- ^^^^^ expected identifier, found keyword
|
|
|
|
| |
|
|
|
|
| while parsing this struct
|
2019-10-23 22:20:58 -07:00
|
|
|
|
|
2022-01-27 14:53:39 -08:00
|
|
|
help: escape `await` to use it as an identifier
|
2019-04-18 12:55:23 -07:00
|
|
|
|
|
|
|
|
LL | struct Foo { r#await: () }
|
2022-01-27 14:53:39 -08:00
|
|
|
| ++
|
2019-04-18 12:55:23 -07:00
|
|
|
|
2019-09-28 09:15:06 -07:00
|
|
|
error: expected identifier, found keyword `await`
|
2019-08-02 03:48:43 +02:00
|
|
|
--> $DIR/2018-edition-error-in-non-macro-position.rs:16:15
|
2019-04-18 12:55:23 -07:00
|
|
|
|
|
|
|
|
LL | impl Foo { fn await() {} }
|
2019-09-28 09:15:06 -07:00
|
|
|
| ^^^^^ expected identifier, found keyword
|
2019-10-23 22:20:58 -07:00
|
|
|
|
|
2022-01-27 14:53:39 -08:00
|
|
|
help: escape `await` to use it as an identifier
|
2019-04-18 12:55:23 -07:00
|
|
|
|
|
|
|
|
LL | impl Foo { fn r#await() {} }
|
2022-01-27 14:53:39 -08:00
|
|
|
| ++
|
2019-04-18 12:55:23 -07:00
|
|
|
|
2019-09-28 09:15:06 -07:00
|
|
|
error: expected identifier, found keyword `await`
|
2019-08-02 03:48:43 +02:00
|
|
|
--> $DIR/2018-edition-error-in-non-macro-position.rs:19:14
|
2019-04-18 12:55:23 -07:00
|
|
|
|
|
|
|
|
LL | macro_rules! await {
|
2019-09-28 09:15:06 -07:00
|
|
|
| ^^^^^ expected identifier, found keyword
|
2019-10-23 22:20:58 -07:00
|
|
|
|
|
2022-01-27 14:53:39 -08:00
|
|
|
help: escape `await` to use it as an identifier
|
2019-04-18 12:55:23 -07:00
|
|
|
|
|
|
|
|
LL | macro_rules! r#await {
|
2022-01-27 14:53:39 -08:00
|
|
|
| ++
|
2019-04-18 12:55:23 -07:00
|
|
|
|
2019-05-15 19:47:18 -07:00
|
|
|
error: aborting due to 7 previous errors
|
2019-04-18 12:55:23 -07:00
|
|
|
|