blob: 0b082f4818f1b53fa32f72cc1e13df96ec721cd3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
// aux-build:issue-41211.rs
// FIXME: https://github.com/rust-lang/rust/issues/41430
// This is a temporary regression test for the ICE reported in #41211
#![feature(custom_inner_attributes)]
#![emit_unchanged]
//~^ ERROR attribute `emit_unchanged` is currently unknown to the compiler
//~| ERROR inconsistent resolution for a macro: first custom attribute, then attribute macro
extern crate issue_41211;
use issue_41211::emit_unchanged;
fn main() {}
|