rust/tests/ui/async-await/await-keyword/2015-edition-warning.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

28 lines
713 B
Rust
Raw Normal View History

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