rust/tests/ui/issues/issue-32655.rs

20 lines
317 B
Rust

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() {}