rust/src/test/ui/opt-in-copy.stderr

22 lines
655 B
Plaintext
Raw Normal View History

2018-08-08 07:28:26 -05:00
error[E0204]: the trait `Copy` may not be implemented for this type
2018-12-25 09:56:47 -06:00
--> $DIR/opt-in-copy.rs:7:6
2018-08-08 07:28:26 -05:00
|
LL | but_i_cant: CantCopyThis,
| ------------------------ this field does not implement `Copy`
...
LL | impl Copy for IWantToCopyThis {}
| ^^^^
error[E0204]: the trait `Copy` may not be implemented for this type
2018-12-25 09:56:47 -06:00
--> $DIR/opt-in-copy.rs:19:6
2018-08-08 07:28:26 -05:00
|
LL | ButICant(CantCopyThisEither),
| ------------------ this field does not implement `Copy`
...
LL | impl Copy for IWantToCopyThisToo {}
| ^^^^
error: aborting due to 2 previous errors
For more information about this error, try `rustc --explain E0204`.