blob: a9e2e3f79ee767a561b88bf4b386adbd528bbbd8 [file] [log] [blame]
// edition:2018
#![allow(non_camel_case_types)]
mod outer_mod {
pub mod await {
pub struct await;
}
}
use self::outer_mod::await::await;
fn main() {
match await { await => () }
}