]> git.lizzy.rs Git - rust.git/blob - src/test/ui/editions/edition-keywords-2015-2015-expansion.rs
:arrow_up: rust-analyzer
[rust.git] / src / test / ui / editions / edition-keywords-2015-2015-expansion.rs
1 // edition:2015
2 // aux-build:edition-kw-macro-2015.rs
3 // check-pass
4
5 #![allow(keyword_idents)]
6
7 #[macro_use]
8 extern crate edition_kw_macro_2015;
9
10 mod one_async {
11     produces_async! {} // OK
12 }
13 mod two_async {
14     produces_async_raw! {} // OK
15 }
16
17 fn main() {}