Sign in
rust
/
rust
/
08650fbb506c44fbc95d91abfb7cd95a56bbff30
/
.
/
src
/
test
/
ui
/
issues
/
issue-27340.rs
blob: 61c77cc1ff39b8c1638e8e28a898d90894ccb06e [
file
]
struct
Foo
;
#[
derive
(
Copy
,
Clone
)]
//~^ ERROR the trait `Copy` may not be implemented for this type
struct
Bar
(
Foo
);
fn
main
()
{}