]> git.proxmox.com Git - rustc.git/blob - src/test/ui/await-keyword/2015-edition-warning.fixed
New upstream version 1.31.0~beta.4+dfsg1
[rustc.git] / src / test / ui / await-keyword / 2015-edition-warning.fixed
1 // run-rustfix
2
3 #![allow(non_camel_case_types)]
4 #![deny(keyword_idents)]
5
6 mod outer_mod {
7 pub mod r#await {
8 pub struct r#await;
9 }
10 }
11 use outer_mod::r#await::r#await;
12
13 fn main() {
14 match r#await { r#await => {} }
15 }