18 lines
261 B
Rust
18 lines
261 B
Rust
//@ 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() {}
|