rust/src/test/ui/proc-macro/macros-in-extern-derive.rs

7 lines
129 B
Rust
Raw Normal View History

2020-09-01 16:12:52 -05:00
extern "C" {
#[derive(Copy)] //~ ERROR `derive` may only be applied to structs, enums and unions
fn f();
}
fn main() {}