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