]> git.lizzy.rs Git - rust.git/blob - src/test/ui/editions/edition-keywords-2018-2015-expansion.rs
Rollup merge of #103594 - maniwani:fix-issue-91417, r=thomcc
[rust.git] / src / test / ui / editions / edition-keywords-2018-2015-expansion.rs
1 // edition:2018
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() {}