2018-09-20 19:36:31 -05:00
|
|
|
// run-rustfix
|
|
|
|
|
|
|
|
#![allow(non_camel_case_types)]
|
|
|
|
#![deny(keyword_idents)]
|
|
|
|
|
|
|
|
mod outer_mod {
|
|
|
|
pub mod r#await {
|
2018-11-27 03:56:36 -06:00
|
|
|
//~^ ERROR `await` is a keyword
|
2021-06-15 10:16:21 -05:00
|
|
|
//~| WARN this is valid in the current edition
|
2018-09-20 19:36:31 -05:00
|
|
|
pub struct r#await;
|
2018-11-27 03:56:36 -06:00
|
|
|
//~^ ERROR `await` is a keyword
|
2021-06-15 10:16:21 -05:00
|
|
|
//~| WARN this is valid in the current edition
|
2018-09-20 19:36:31 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
use outer_mod::r#await::r#await;
|
2018-11-27 03:56:36 -06:00
|
|
|
//~^ ERROR `await` is a keyword
|
|
|
|
//~| ERROR `await` is a keyword
|
2021-06-15 10:16:21 -05:00
|
|
|
//~| WARN this is valid in the current edition
|
|
|
|
//~| WARN this is valid in the current edition
|
2018-09-20 19:36:31 -05:00
|
|
|
|
|
|
|
fn main() {
|
|
|
|
match r#await { r#await => {} }
|
2018-11-27 03:56:36 -06:00
|
|
|
//~^ ERROR `await` is a keyword
|
|
|
|
//~| ERROR `await` is a keyword
|
2021-06-15 10:16:21 -05:00
|
|
|
//~| WARN this is valid in the current edition
|
|
|
|
//~| WARN this is valid in the current edition
|
2018-09-20 19:36:31 -05:00
|
|
|
}
|