rust/tests/ui/derives/derive-on-trait-item-or-impl-item.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

16 lines
290 B
Rust
Raw Normal View History

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() {}