mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
15 lines
256 B
Rust
15 lines
256 B
Rust
// edition:2015
|
|
// aux-build:edition-kw-macro-2018.rs
|
|
|
|
#[macro_use]
|
|
extern crate edition_kw_macro_2018;
|
|
|
|
mod one_async {
|
|
produces_async! {} //~ ERROR expected identifier, found keyword
|
|
}
|
|
mod two_async {
|
|
produces_async_raw! {} // OK
|
|
}
|
|
|
|
fn main() {}
|