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