Skip to content

Commit 6a790d3

Browse files
committed
Improve the wording
1 parent 0194bed commit 6a790d3

28 files changed

+46
-46
lines changed

src/librustc_typeck/coherence/orphan.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ impl<'cx, 'tcx, 'v> ItemLikeVisitor<'v> for OrphanChecker<'cx, 'tcx> {
4040
"only traits defined in the current crate can be \
4141
implemented for arbitrary types")
4242
.span_label(sp, "impl doesn't use types inside crate")
43-
.note("the impl does not reference any types defined in this crate")
43+
.note("the impl does not reference only types defined in this crate")
4444
.note("define and implement a trait or new type instead")
4545
.emit();
4646
return;

src/test/ui/coherence/coherence-cow.re_a.stderr

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ error[E0117]: only traits defined in the current crate can be implemented for ar
44
LL | impl<T> Remote for Pair<T,Cover<T>> { }
55
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ impl doesn't use types inside crate
66
|
7-
= note: the impl does not reference any types defined in this crate
7+
= note: the impl does not reference only types defined in this crate
88
= note: define and implement a trait or new type instead
99

1010
error: aborting due to previous error

src/test/ui/coherence/coherence-cow.re_b.stderr

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ error[E0117]: only traits defined in the current crate can be implemented for ar
44
LL | impl<T> Remote for Pair<Cover<T>,T> { }
55
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ impl doesn't use types inside crate
66
|
7-
= note: the impl does not reference any types defined in this crate
7+
= note: the impl does not reference only types defined in this crate
88
= note: define and implement a trait or new type instead
99

1010
error: aborting due to previous error

src/test/ui/coherence/coherence-cow.re_c.stderr

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ error[E0117]: only traits defined in the current crate can be implemented for ar
44
LL | impl<T,U> Remote for Pair<Cover<T>,U> { }
55
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ impl doesn't use types inside crate
66
|
7-
= note: the impl does not reference any types defined in this crate
7+
= note: the impl does not reference only types defined in this crate
88
= note: define and implement a trait or new type instead
99

1010
error: aborting due to previous error

src/test/ui/coherence/coherence-fundamental-trait-objects.old.stderr

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ error[E0117]: only traits defined in the current crate can be implemented for ar
44
LL | impl Misc for dyn Fundamental<Local> {}
55
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ impl doesn't use types inside crate
66
|
7-
= note: the impl does not reference any types defined in this crate
7+
= note: the impl does not reference only types defined in this crate
88
= note: define and implement a trait or new type instead
99

1010
error: aborting due to previous error

src/test/ui/coherence/coherence-fundamental-trait-objects.re.stderr

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ error[E0117]: only traits defined in the current crate can be implemented for ar
44
LL | impl Misc for dyn Fundamental<Local> {}
55
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ impl doesn't use types inside crate
66
|
7-
= note: the impl does not reference any types defined in this crate
7+
= note: the impl does not reference only types defined in this crate
88
= note: define and implement a trait or new type instead
99

1010
error: aborting due to previous error

src/test/ui/coherence/coherence-impls-copy.old.stderr

+4-4
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ error[E0117]: only traits defined in the current crate can be implemented for ar
5151
LL | 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

5757
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
6060
LL | 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

6666
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
6969
LL | 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

7575
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
7878
LL | 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

8484
error: aborting due to 10 previous errors

src/test/ui/coherence/coherence-impls-copy.re.stderr

+4-4
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ error[E0117]: only traits defined in the current crate can be implemented for ar
5151
LL | 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

5757
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
6060
LL | 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

6666
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
6969
LL | 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

7575
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
7878
LL | 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

8484
error: aborting due to 10 previous errors

src/test/ui/coherence/coherence-impls-send.old.stderr

+3-3
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ error[E0117]: only traits defined in the current crate can be implemented for ar
44
LL | unsafe impl Send for (MyType, MyType) {}
55
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ impl doesn't use types inside crate
66
|
7-
= note: the impl does not reference any types defined in this crate
7+
= note: the impl does not reference only types defined in this crate
88
= note: define and implement a trait or new type instead
99

1010
error[E0321]: cross-crate traits with a default impl, like `std::marker::Send`, can only be implemented for a struct/enum type, not `&'static NotSync`
@@ -19,7 +19,7 @@ error[E0117]: only traits defined in the current crate can be implemented for ar
1919
LL | unsafe impl Send for [MyType] {}
2020
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ impl doesn't use types inside crate
2121
|
22-
= note: the impl does not reference any types defined in this crate
22+
= note: the impl does not reference only types defined in this crate
2323
= note: define and implement a trait or new type instead
2424

2525
error[E0117]: only traits defined in the current crate can be implemented for arbitrary types
@@ -28,7 +28,7 @@ error[E0117]: only traits defined in the current crate can be implemented for ar
2828
LL | unsafe impl Send for &'static [NotSync] {}
2929
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ impl doesn't use types inside crate
3030
|
31-
= note: the impl does not reference any types defined in this crate
31+
= note: the impl does not reference only types defined in this crate
3232
= note: define and implement a trait or new type instead
3333

3434
error: aborting due to 4 previous errors

src/test/ui/coherence/coherence-impls-send.re.stderr

+3-3
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ error[E0117]: only traits defined in the current crate can be implemented for ar
44
LL | unsafe impl Send for (MyType, MyType) {}
55
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ impl doesn't use types inside crate
66
|
7-
= note: the impl does not reference any types defined in this crate
7+
= note: the impl does not reference only types defined in this crate
88
= note: define and implement a trait or new type instead
99

1010
error[E0321]: cross-crate traits with a default impl, like `std::marker::Send`, can only be implemented for a struct/enum type, not `&'static NotSync`
@@ -19,7 +19,7 @@ error[E0117]: only traits defined in the current crate can be implemented for ar
1919
LL | unsafe impl Send for [MyType] {}
2020
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ impl doesn't use types inside crate
2121
|
22-
= note: the impl does not reference any types defined in this crate
22+
= note: the impl does not reference only types defined in this crate
2323
= note: define and implement a trait or new type instead
2424

2525
error[E0117]: only traits defined in the current crate can be implemented for arbitrary types
@@ -28,7 +28,7 @@ error[E0117]: only traits defined in the current crate can be implemented for ar
2828
LL | unsafe impl Send for &'static [NotSync] {}
2929
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ impl doesn't use types inside crate
3030
|
31-
= note: the impl does not reference any types defined in this crate
31+
= note: the impl does not reference only types defined in this crate
3232
= note: define and implement a trait or new type instead
3333

3434
error: aborting due to 4 previous errors

src/test/ui/coherence/coherence-impls-sized.old.stderr

+3-3
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ error[E0117]: only traits defined in the current crate can be implemented for ar
4040
LL | impl Sized for (MyType, MyType) {}
4141
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ impl doesn't use types inside crate
4242
|
43-
= note: the impl does not reference any types defined in this crate
43+
= note: the impl does not reference only types defined in this crate
4444
= note: define and implement a trait or new type instead
4545

4646
error[E0117]: only traits defined in the current crate can be implemented for arbitrary types
@@ -49,7 +49,7 @@ error[E0117]: only traits defined in the current crate can be implemented for ar
4949
LL | impl Sized for [MyType] {}
5050
| ^^^^^^^^^^^^^^^^^^^^^^^ impl doesn't use types inside crate
5151
|
52-
= note: the impl does not reference any types defined in this crate
52+
= note: the impl does not reference only types defined in this crate
5353
= note: define and implement a trait or new type instead
5454

5555
error[E0117]: only traits defined in the current crate can be implemented for arbitrary types
@@ -58,7 +58,7 @@ error[E0117]: only traits defined in the current crate can be implemented for ar
5858
LL | impl Sized for &'static [NotSync] {}
5959
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ impl doesn't use types inside crate
6060
|
61-
= note: the impl does not reference any types defined in this crate
61+
= note: the impl does not reference only types defined in this crate
6262
= note: define and implement a trait or new type instead
6363

6464
error: aborting due to 9 previous errors

src/test/ui/coherence/coherence-impls-sized.re.stderr

+3-3
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ error[E0117]: only traits defined in the current crate can be implemented for ar
4040
LL | impl Sized for (MyType, MyType) {}
4141
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ impl doesn't use types inside crate
4242
|
43-
= note: the impl does not reference any types defined in this crate
43+
= note: the impl does not reference only types defined in this crate
4444
= note: define and implement a trait or new type instead
4545

4646
error[E0117]: only traits defined in the current crate can be implemented for arbitrary types
@@ -49,7 +49,7 @@ error[E0117]: only traits defined in the current crate can be implemented for ar
4949
LL | impl Sized for [MyType] {}
5050
| ^^^^^^^^^^^^^^^^^^^^^^^ impl doesn't use types inside crate
5151
|
52-
= note: the impl does not reference any types defined in this crate
52+
= note: the impl does not reference only types defined in this crate
5353
= note: define and implement a trait or new type instead
5454

5555
error[E0117]: only traits defined in the current crate can be implemented for arbitrary types
@@ -58,7 +58,7 @@ error[E0117]: only traits defined in the current crate can be implemented for ar
5858
LL | impl Sized for &'static [NotSync] {}
5959
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ impl doesn't use types inside crate
6060
|
61-
= note: the impl does not reference any types defined in this crate
61+
= note: the impl does not reference only types defined in this crate
6262
= note: define and implement a trait or new type instead
6363

6464
error: aborting due to 9 previous errors

src/test/ui/coherence/coherence-orphan.old.stderr

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ error[E0117]: only traits defined in the current crate can be implemented for ar
44
LL | impl TheTrait<usize> for isize { }
55
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ impl doesn't use types inside crate
66
|
7-
= note: the impl does not reference any types defined in this crate
7+
= note: the impl does not reference only types defined in this crate
88
= note: define and implement a trait or new type instead
99

1010
error[E0117]: only traits defined in the current crate can be implemented for arbitrary types
@@ -13,7 +13,7 @@ error[E0117]: only traits defined in the current crate can be implemented for ar
1313
LL | impl !Send for Vec<isize> { }
1414
| ^^^^^^^^^^^^^^^^^^^^^^^^^ impl doesn't use types inside crate
1515
|
16-
= note: the impl does not reference any types defined in this crate
16+
= note: the impl does not reference only types defined in this crate
1717
= note: define and implement a trait or new type instead
1818

1919
error: aborting due to 2 previous errors

src/test/ui/coherence/coherence-orphan.re.stderr

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ error[E0117]: only traits defined in the current crate can be implemented for ar
44
LL | impl TheTrait<usize> for isize { }
55
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ impl doesn't use types inside crate
66
|
7-
= note: the impl does not reference any types defined in this crate
7+
= note: the impl does not reference only types defined in this crate
88
= note: define and implement a trait or new type instead
99

1010
error[E0117]: only traits defined in the current crate can be implemented for arbitrary types
@@ -13,7 +13,7 @@ error[E0117]: only traits defined in the current crate can be implemented for ar
1313
LL | impl !Send for Vec<isize> { }
1414
| ^^^^^^^^^^^^^^^^^^^^^^^^^ impl doesn't use types inside crate
1515
|
16-
= note: the impl does not reference any types defined in this crate
16+
= note: the impl does not reference only types defined in this crate
1717
= note: define and implement a trait or new type instead
1818

1919
error: aborting due to 2 previous errors

src/test/ui/coherence/coherence-overlapping-pairs.re.stderr

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ error[E0117]: only traits defined in the current crate can be implemented for ar
44
LL | impl<T> Remote for lib::Pair<T,Foo> { }
55
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ impl doesn't use types inside crate
66
|
7-
= note: the impl does not reference any types defined in this crate
7+
= note: the impl does not reference only types defined in this crate
88
= note: define and implement a trait or new type instead
99

1010
error: aborting due to previous error

src/test/ui/coherence/coherence-pair-covered-uncovered-1.re.stderr

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ error[E0117]: only traits defined in the current crate can be implemented for ar
44
LL | impl<T, U> Remote1<Pair<T, Local<U>>> for i32 { }
55
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ impl doesn't use types inside crate
66
|
7-
= note: the impl does not reference any types defined in this crate
7+
= note: the impl does not reference only types defined in this crate
88
= note: define and implement a trait or new type instead
99

1010
error: aborting due to previous error

src/test/ui/coherence/coherence-pair-covered-uncovered.re.stderr

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ error[E0117]: only traits defined in the current crate can be implemented for ar
44
LL | impl<T,U> Remote for Pair<T,Local<U>> { }
55
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ impl doesn't use types inside crate
66
|
7-
= note: the impl does not reference any types defined in this crate
7+
= note: the impl does not reference only types defined in this crate
88
= note: define and implement a trait or new type instead
99

1010
error: aborting due to previous error

src/test/ui/coherence/coherence-vec-local-2.re.stderr

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ error[E0117]: only traits defined in the current crate can be implemented for ar
44
LL | impl<T> Remote for Vec<Local<T>> { }
55
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ impl doesn't use types inside crate
66
|
7-
= note: the impl does not reference any types defined in this crate
7+
= note: the impl does not reference only types defined in this crate
88
= note: define and implement a trait or new type instead
99

1010
error: aborting due to previous error

src/test/ui/coherence/coherence-vec-local.old.stderr

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ error[E0117]: only traits defined in the current crate can be implemented for ar
44
LL | impl Remote for Vec<Local> { }
55
| ^^^^^^^^^^^^^^^^^^^^^^^^^^ impl doesn't use types inside crate
66
|
7-
= note: the impl does not reference any types defined in this crate
7+
= note: the impl does not reference only types defined in this crate
88
= note: define and implement a trait or new type instead
99

1010
error: aborting due to previous error

src/test/ui/coherence/coherence-vec-local.re.stderr

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ error[E0117]: only traits defined in the current crate can be implemented for ar
44
LL | impl Remote for Vec<Local> { }
55
| ^^^^^^^^^^^^^^^^^^^^^^^^^^ impl doesn't use types inside crate
66
|
7-
= note: the impl does not reference any types defined in this crate
7+
= note: the impl does not reference only types defined in this crate
88
= note: define and implement a trait or new type instead
99

1010
error: aborting due to previous error

src/test/ui/coherence/coherence_local_err_struct.old.stderr

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ error[E0117]: only traits defined in the current crate can be implemented for ar
44
LL | impl lib::MyCopy for lib::MyStruct<MyType> { }
55
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ impl doesn't use types inside crate
66
|
7-
= note: the impl does not reference any types defined in this crate
7+
= note: the impl does not reference only types defined in this crate
88
= note: define and implement a trait or new type instead
99

1010
error: aborting due to previous error

src/test/ui/coherence/coherence_local_err_struct.re.stderr

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ error[E0117]: only traits defined in the current crate can be implemented for ar
44
LL | impl lib::MyCopy for lib::MyStruct<MyType> { }
55
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ impl doesn't use types inside crate
66
|
7-
= note: the impl does not reference any types defined in this crate
7+
= note: the impl does not reference only types defined in this crate
88
= note: define and implement a trait or new type instead
99

1010
error: aborting due to previous error

src/test/ui/coherence/coherence_local_err_tuple.old.stderr

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ error[E0117]: only traits defined in the current crate can be implemented for ar
44
LL | impl lib::MyCopy for (MyType,) { }
55
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ impl doesn't use types inside crate
66
|
7-
= note: the impl does not reference any types defined in this crate
7+
= note: the impl does not reference only types defined in this crate
88
= note: define and implement a trait or new type instead
99

1010
error: aborting due to previous error

src/test/ui/coherence/coherence_local_err_tuple.re.stderr

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ error[E0117]: only traits defined in the current crate can be implemented for ar
44
LL | impl lib::MyCopy for (MyType,) { }
55
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ impl doesn't use types inside crate
66
|
7-
= note: the impl does not reference any types defined in this crate
7+
= note: the impl does not reference only types defined in this crate
88
= note: define and implement a trait or new type instead
99

1010
error: aborting due to previous error

src/test/ui/dropck/drop-on-non-struct.stderr

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ error[E0117]: only traits defined in the current crate can be implemented for ar
1010
LL | impl<'a> Drop for &'a mut isize {
1111
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ impl doesn't use types inside crate
1212
|
13-
= note: the impl does not reference any types defined in this crate
13+
= note: the impl does not reference only types defined in this crate
1414
= note: define and implement a trait or new type instead
1515

1616
error: aborting due to 2 previous errors

0 commit comments

Comments
 (0)