]> git.lizzy.rs Git - rust.git/blob - tests/ui/derives/deriving-meta-unknown-trait.rs
Auto merge of #107828 - compiler-errors:rollup-gyj6dgj, r=compiler-errors
[rust.git] / tests / 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() {}