blob: 30da3ac879ea80d64ab8bb4b3f2ac58db5e15dfe (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
error: type could implement `Copy`; consider adding `impl Copy`
--> $DIR/lint-missing-copy-implementations.rs:6:5
|
LL | / pub struct Foo { //~ ERROR type could implement `Copy`; consider adding `impl Copy`
LL | | pub field: i32
LL | | }
| |_____^
|
note: lint level defined here
--> $DIR/lint-missing-copy-implementations.rs:3:9
|
LL | #![deny(missing_copy_implementations)]
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
error: aborting due to previous error
|