14 lines
201 B
Rust
14 lines
201 B
Rust
|
// 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 => () }
|
||
|
}
|