about summary refs log tree commit diff
path: root/tests/ui/editions/edition-keywords-2015-2015-expansion.rs
blob: a72863e1936f714396ff0c86fc09d1a6fa725feb (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() {}