blob: 6f766550d47341356abdf839d70db44e729e4a1e [file] [log] [blame]
// edition:2018
// aux-build:edition-kw-macro-2018.rs
#[macro_use]
extern crate edition_kw_macro_2018;
mod one_async {
produces_async! {} //~ ERROR expected identifier, found reserved keyword `async`
}
mod two_async {
produces_async_raw! {} // OK
}
fn main() {}