mirror of
https://github.com/rust-lang/rust
synced 2024-11-05 20:45:15 +00:00
15 lines
290 B
Rust
15 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() {}
|