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