]> git.lizzy.rs Git - rust.git/blob - src/test/ui/derives/deriving-meta-unknown-trait.rs
Rollup merge of #103531 - chenyukang:yukang/fix-103474, r=estebank
[rust.git] / src / test / ui / derives / deriving-meta-unknown-trait.rs
1 #[derive(Eqr)]
2 //~^ ERROR cannot find derive macro `Eqr` in this scope
3 //~| ERROR cannot find derive macro `Eqr` in this scope
4 struct Foo;
5
6 pub fn main() {}