blob: f52e09231296804cd797f5226401f3f64a6a2b03 [file] [log] [blame]
macro_rules! foo (
() => (
#[derive_Clone] //~ ERROR cannot find attribute `derive_Clone` in this scope
struct T;
);
);
macro_rules! bar (
($e:item) => ($e)
);
foo!();
bar!(
#[derive_Clone] //~ ERROR cannot find attribute `derive_Clone` in this scope
struct S;
);
fn main() {}