]> git.lizzy.rs Git - rust.git/blob - tests/ui/editions/edition-keywords-2015-2018-expansion.rs
Don't resolve type var roots in point_at_expr_source_of_inferred_type
[rust.git] / tests / ui / editions / edition-keywords-2015-2018-expansion.rs
1 // edition:2015
2 // aux-build:edition-kw-macro-2018.rs
3
4 #[macro_use]
5 extern crate edition_kw_macro_2018;
6
7 mod one_async {
8     produces_async! {} //~ ERROR expected identifier, found keyword
9 }
10 mod two_async {
11     produces_async_raw! {} // OK
12 }
13
14 fn main() {}