blob: 21af4093a037de46f187556cfdd07ff63ad53d33 [file] [log] [blame]
// aux-build:test-macros.rs
#[macro_use]
extern crate test_macros;
use test_macros::empty_attr as empty_helper;
#[empty_helper] //~ ERROR `empty_helper` is ambiguous
#[derive(Empty)]
struct S {
// FIXME No ambiguity, attributes in non-macro positions are not resolved properly
#[empty_helper]
field: [u8; {
// FIXME No ambiguity, derive helpers are not put into scope for non-attributes
use empty_helper;
// FIXME No ambiguity, derive helpers are not put into scope for inner items
#[empty_helper]
struct U;
mod inner {
// FIXME No ambiguity, attributes in non-macro positions are not resolved properly
#[empty_helper]
struct V;
}
0
}]
}
fn main() {
let s = S { field: [] };
}