about summary refs log tree commit diff
path: root/tests/ui/proc-macro/helper-attr-blocked-by-import-ambig.rs
blob: 1197dd7f3bfd0e1dbe9058f06d852304a8276d35 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
//@ proc-macro: test-macros.rs

#[macro_use(Empty)]
extern crate test_macros;
use test_macros::empty_attr as empty_helper;

#[empty_helper] //~ ERROR `empty_helper` is ambiguous
                //~| WARN derive helper attribute is used before it is introduced
                //~| WARN this was previously accepted
#[derive(Empty)]
struct S;

fn main() {}