2019-09-28 09:15:06 -07:00
|
|
|
error: expected identifier, found keyword `await`
|
2018-09-20 17:36:31 -07:00
|
|
|
--> $DIR/2018-edition-error.rs:5:13
|
|
|
|
|
|
2019-03-09 15:03:44 +03: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
|
|
|
| ++
|
2018-09-20 17:36:31 -07:00
|
|
|
|
2019-09-28 09:15:06 -07:00
|
|
|
error: expected identifier, found keyword `await`
|
2018-09-20 17:36:31 -07:00
|
|
|
--> $DIR/2018-edition-error.rs:6:20
|
|
|
|
|
|
2019-03-09 15:03:44 +03: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
|
|
|
| ++
|
2018-09-20 17:36:31 -07:00
|
|
|
|
2019-09-28 09:15:06 -07:00
|
|
|
error: expected identifier, found keyword `await`
|
2018-09-20 17:36:31 -07:00
|
|
|
--> $DIR/2018-edition-error.rs:9:22
|
|
|
|
|
|
2019-03-09 15:03:44 +03: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
|
|
|
| ++
|
2018-09-20 17:36:31 -07:00
|
|
|
|
2019-09-28 09:15:06 -07:00
|
|
|
error: expected identifier, found keyword `await`
|
2018-09-20 17:36:31 -07:00
|
|
|
--> $DIR/2018-edition-error.rs:9:29
|
|
|
|
|
|
2019-03-09 15:03:44 +03: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
|
2018-09-20 17:36:31 -07:00
|
|
|
|
|
2019-04-18 12:55:23 -07:00
|
|
|
LL | use self::outer_mod::await::r#await;
|
2022-01-27 14:53:39 -08:00
|
|
|
| ++
|
2018-09-20 17:36:31 -07:00
|
|
|
|
2019-09-28 09:15:06 -07:00
|
|
|
error: expected identifier, found keyword `await`
|
2019-07-02 06:46:35 +02:00
|
|
|
--> $DIR/2018-edition-error.rs:12:14
|
|
|
|
|
|
|
|
|
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-07-02 06:46:35 +02:00
|
|
|
|
|
|
|
|
LL | macro_rules! r#await { () => {}; }
|
2022-01-27 14:53:39 -08:00
|
|
|
| ++
|
2019-07-02 06:46:35 +02:00
|
|
|
|
|
|
|
error: expected expression, found `)`
|
|
|
|
--> $DIR/2018-edition-error.rs:15:12
|
|
|
|
|
|
|
|
|
LL | await!();
|
|
|
|
| ^ expected expression
|
|
|
|
|
|
|
|
error: aborting due to 6 previous errors
|
2018-09-20 17:36:31 -07:00
|
|
|
|