@@ -51,7 +51,7 @@ error[E0117]: only traits defined in the current crate can be implemented for ar
5151LL | impl Copy for i32 {}
5252 | ^^^^^^^^^^^^^^^^^ impl doesn't use types inside crate
5353 |
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
5555 = note: define and implement a trait or new type instead
5656
5757error[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
6060LL | impl Copy for (MyType, MyType) {}
6161 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ impl doesn't use types inside crate
6262 |
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
6464 = note: define and implement a trait or new type instead
6565
6666error[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
6969LL | impl Copy for [MyType] {}
7070 | ^^^^^^^^^^^^^^^^^^^^^^ impl doesn't use types inside crate
7171 |
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
7373 = note: define and implement a trait or new type instead
7474
7575error[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
7878LL | impl Copy for &'static [NotSync] {}
7979 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ impl doesn't use types inside crate
8080 |
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
8282 = note: define and implement a trait or new type instead
8383
8484error: aborting due to 10 previous errors
0 commit comments