summaryrefslogtreecommitdiffstats
path: root/src/test/ui/derives/deriving-meta-unknown-trait.rs
blob: 6463a7664de93ce22042b3b9099b05f6f48397f9 (plain)
1
2
3
4
5
6
#[derive(Eqr)]
//~^ ERROR cannot find derive macro `Eqr` in this scope
//~| ERROR cannot find derive macro `Eqr` in this scope
struct Foo;

pub fn main() {}