]> git.lizzy.rs Git - rust.git/blob - src/test/ui/proc-macro/issue-41211.rs
Update src/libcore/mem.rs
[rust.git] / src / test / ui / proc-macro / issue-41211.rs
1 // aux-build:issue-41211.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_inner_attributes)]
7
8 #![emit_unchanged]
9 //~^ ERROR attribute `emit_unchanged` is currently unknown to the compiler
10 //~| ERROR inconsistent resolution for a macro: first custom attribute, then attribute macro
11 extern crate issue_41211;
12 use issue_41211::emit_unchanged;
13
14 fn main() {}