rust/src/test/ui/span/issue-43927-non-ADT-derive.rs

6 lines
170 B
Rust

#![derive(Debug, PartialEq, Eq)] // should be an outer attribute!
//~^ ERROR cannot determine resolution for the attribute macro `derive`
struct DerivedOn;
fn main() {}