rust/tests/ui/issues/issue-27340.rs
2023-03-08 00:00:18 +00:00

7 lines
130 B
Rust

struct Foo;
#[derive(Copy, Clone)]
//~^ ERROR the trait `Copy` cannot be implemented for this type
struct Bar(Foo);
fn main() {}