rust/src/test/ui/async-await/await-keyword/2015-edition-warning.fixed

28 lines
706 B
Rust
Raw Normal View History

// 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
//~| WARN this is valid in the current edition
pub struct r#await;
2018-11-27 03:56:36 -06:00
//~^ ERROR `await` is a keyword
//~| WARN this is valid in the current edition
}
}
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
//~| WARN this is valid in the current edition
//~| WARN this is valid in the current edition
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
//~| WARN this is valid in the current edition
//~| WARN this is valid in the current edition
}