rust/tests/ui/derives/derive-on-trait-item-or-impl-item.rs
2023-01-11 09:32:08 +00:00

16 lines
290 B
Rust

trait Foo {
#[derive(Clone)]
//~^ ERROR `derive` may only be applied to `struct`s, `enum`s and `union`s
type Bar;
}
struct Bar;
impl Bar {
#[derive(Clone)]
//~^ ERROR `derive` may only be applied to `struct`s, `enum`s and `union`s
fn bar(&self) {}
}
fn main() {}