mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
18 lines
258 B
Rust
18 lines
258 B
Rust
// edition:2018
|
|
// 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() {}
|