rust/src/test/ui/proc-macro/macros-in-extern-derive.rs
2021-01-13 07:49:16 -05:00

7 lines
129 B
Rust

extern "C" {
#[derive(Copy)] //~ ERROR `derive` may only be applied to structs, enums and unions
fn f();
}
fn main() {}