]> git.lizzy.rs Git - rust.git/blob - src/test/ui/derives/deriving-meta-unknown-trait.rs
Auto merge of #106143 - matthiaskrgr:rollup-3kpy1dc, r=matthiaskrgr
[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() {}