@@ -51,7 +51,7 @@ error[E0117]: only traits defined in the current crate can be implemented for ar
51
51
LL | impl Copy for i32 {}
52
52
| ^^^^^^^^^^^^^^^^^ impl doesn't use types inside crate
53
53
|
54
- = note: the impl does not reference any types defined in this crate
54
+ = note: the impl does not reference only types defined in this crate
55
55
= note: define and implement a trait or new type instead
56
56
57
57
error[E0117]: only traits defined in the current crate can be implemented for arbitrary types
@@ -60,7 +60,7 @@ error[E0117]: only traits defined in the current crate can be implemented for ar
60
60
LL | impl Copy for (MyType, MyType) {}
61
61
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ impl doesn't use types inside crate
62
62
|
63
- = note: the impl does not reference any types defined in this crate
63
+ = note: the impl does not reference only types defined in this crate
64
64
= note: define and implement a trait or new type instead
65
65
66
66
error[E0117]: only traits defined in the current crate can be implemented for arbitrary types
@@ -69,7 +69,7 @@ error[E0117]: only traits defined in the current crate can be implemented for ar
69
69
LL | impl Copy for [MyType] {}
70
70
| ^^^^^^^^^^^^^^^^^^^^^^ impl doesn't use types inside crate
71
71
|
72
- = note: the impl does not reference any types defined in this crate
72
+ = note: the impl does not reference only types defined in this crate
73
73
= note: define and implement a trait or new type instead
74
74
75
75
error[E0117]: only traits defined in the current crate can be implemented for arbitrary types
@@ -78,7 +78,7 @@ error[E0117]: only traits defined in the current crate can be implemented for ar
78
78
LL | impl Copy for &'static [NotSync] {}
79
79
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ impl doesn't use types inside crate
80
80
|
81
- = note: the impl does not reference any types defined in this crate
81
+ = note: the impl does not reference only types defined in this crate
82
82
= note: define and implement a trait or new type instead
83
83
84
84
error: aborting due to 10 previous errors
0 commit comments