]> git.lizzy.rs Git - rust.git/blob - src/test/ui/proc-macro/issue-41211.rs
async/await: improve obligation errors
[rust.git] / src / test / ui / proc-macro / issue-41211.rs
1 // aux-build:test-macros.rs
2
3 // FIXME: https://github.com/rust-lang/rust/issues/41430
4 // This is a temporary regression test for the ICE reported in #41211
5
6 #![feature(custom_attribute)]
7 #![feature(custom_inner_attributes)]
8
9 #![identity_attr]
10 //~^ ERROR inconsistent resolution for a macro: first custom attribute, then attribute macro
11 extern crate test_macros;
12 use test_macros::identity_attr;
13
14 fn main() {}