2018-06-25 22:04:08 -05:00
|
|
|
// edition:2015
|
2018-04-23 17:50:28 -05:00
|
|
|
// aux-build:edition-kw-macro-2018.rs
|
|
|
|
|
|
|
|
#[macro_use]
|
|
|
|
extern crate edition_kw_macro_2018;
|
|
|
|
|
|
|
|
mod one_async {
|
2018-07-19 07:15:43 -05:00
|
|
|
produces_async! {} //~ ERROR expected identifier, found reserved keyword
|
2018-04-23 17:50:28 -05:00
|
|
|
}
|
|
|
|
mod two_async {
|
|
|
|
produces_async_raw! {} // OK
|
|
|
|
}
|