blob: 04215226c6d4183b505f63a8f02b279ab9bec7cf [file] [log] [blame]
// aux-build:derive-b.rs
#[macro_use]
extern crate derive_b;
#[B] //~ ERROR `B` is ambiguous
#[C] //~ ERROR cannot find attribute macro `C` in this scope
#[B(D)] //~ ERROR `B` is ambiguous
#[B(E = "foo")] //~ ERROR `B` is ambiguous
#[B(arbitrary tokens)] //~ ERROR `B` is ambiguous
#[derive(B)]
struct B;
fn main() {}