@@ -15,7 +15,7 @@ LL | impl Copy for &'static [NotSync] {}
15
15
| ^^^^^^^^^^^^^^------------------
16
16
| | |
17
17
| | this is not defined in the current crate because slices are always foreign
18
- | impl doesn't use only types from inside the current crate
18
+ | impl doesn't use any uncovered types from inside the current crate
19
19
|
20
20
= note: define and implement a trait or new type instead
21
21
@@ -26,7 +26,7 @@ LL | impl Copy for i32 {}
26
26
| ^^^^^^^^^^^^^^---
27
27
| | |
28
28
| | `i32` is not defined in the current crate
29
- | impl doesn't use only types from inside the current crate
29
+ | impl doesn't use any uncovered types from inside the current crate
30
30
|
31
31
= note: define and implement a trait or new type instead
32
32
@@ -43,7 +43,7 @@ LL | impl Copy for (MyType, MyType) {}
43
43
| ^^^^^^^^^^^^^^----------------
44
44
| | |
45
45
| | this is not defined in the current crate because tuples are always foreign
46
- | impl doesn't use only types from inside the current crate
46
+ | impl doesn't use any uncovered types from inside the current crate
47
47
|
48
48
= note: define and implement a trait or new type instead
49
49
@@ -60,7 +60,7 @@ LL | impl Copy for [MyType] {}
60
60
| ^^^^^^^^^^^^^^--------
61
61
| | |
62
62
| | this is not defined in the current crate because slices are always foreign
63
- | impl doesn't use only types from inside the current crate
63
+ | impl doesn't use any uncovered types from inside the current crate
64
64
|
65
65
= note: define and implement a trait or new type instead
66
66
0 commit comments