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