summaryrefslogtreecommitdiffstats
path: root/src/test/ui/editions/edition-keywords-2015-2015-expansion.rs
blob: b2695bea5c39dc0d408d2f0bf2eaf8ce4837625b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// edition:2015
// aux-build:edition-kw-macro-2015.rs
// check-pass

#![allow(keyword_idents)]

#[macro_use]
extern crate edition_kw_macro_2015;

mod one_async {
    produces_async! {} // OK
}
mod two_async {
    produces_async_raw! {} // OK
}

fn main() {}