You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: compiler/rustc_hir_analysis/messages.ftl
+4-2
Original file line number
Diff line number
Diff line change
@@ -356,12 +356,14 @@ hir_analysis_only_current_traits_arbitrary = only traits defined in the current
356
356
357
357
hir_analysis_only_current_traits_foreign = this is not defined in the current crate because this is a foreign trait
358
358
359
-
hir_analysis_only_current_traits_label = impl doesn't use only types from inside the current crate
360
-
361
359
hir_analysis_only_current_traits_name = this is not defined in the current crate because {$name} are always foreign
362
360
363
361
hir_analysis_only_current_traits_note = define and implement a trait or new type instead
364
362
363
+
hir_analysis_only_current_traits_note_more_info = for more information see https://doc.rust-lang.org/reference/items/implementations.html#orphan-rules
364
+
365
+
hir_analysis_only_current_traits_note_uncovered = impl doesn't have any local type before any uncovered type parameters
366
+
365
367
hir_analysis_only_current_traits_opaque = type alias impl trait is treated as if it were foreign, because its hidden type could be from a foreign crate
366
368
367
369
hir_analysis_only_current_traits_outside = only traits defined in the current crate can be implemented for types defined outside of the crate
Copy file name to clipboardexpand all lines: tests/ui/coherence/coherence-cow.re_a.stderr
+4-3
Original file line number
Diff line number
Diff line change
@@ -3,10 +3,11 @@ error[E0117]: only traits defined in the current crate can be implemented for ty
3
3
|
4
4
LL | impl<T> Remote for Pair<T,Cover<T>> { }
5
5
| ^^^^^^^^^^^^^^^^^^^----------------
6
-
| | |
7
-
| | `Pair` is not defined in the current crate
8
-
| impl doesn't use only types from inside the current crate
6
+
| |
7
+
| `Pair` is not defined in the current crate
9
8
|
9
+
= note: impl doesn't have any local type before any uncovered type parameters
10
+
= note: for more information see https://doc.rust-lang.org/reference/items/implementations.html#orphan-rules
10
11
= note: define and implement a trait or new type instead
Copy file name to clipboardexpand all lines: tests/ui/coherence/coherence-cow.re_b.stderr
+4-3
Original file line number
Diff line number
Diff line change
@@ -3,10 +3,11 @@ error[E0117]: only traits defined in the current crate can be implemented for ty
3
3
|
4
4
LL | impl<T> Remote for Pair<Cover<T>,T> { }
5
5
| ^^^^^^^^^^^^^^^^^^^----------------
6
-
| | |
7
-
| | `Pair` is not defined in the current crate
8
-
| impl doesn't use only types from inside the current crate
6
+
| |
7
+
| `Pair` is not defined in the current crate
9
8
|
9
+
= note: impl doesn't have any local type before any uncovered type parameters
10
+
= note: for more information see https://doc.rust-lang.org/reference/items/implementations.html#orphan-rules
10
11
= note: define and implement a trait or new type instead
Copy file name to clipboardexpand all lines: tests/ui/coherence/coherence-cow.re_c.stderr
+4-3
Original file line number
Diff line number
Diff line change
@@ -3,10 +3,11 @@ error[E0117]: only traits defined in the current crate can be implemented for ty
3
3
|
4
4
LL | impl<T,U> Remote for Pair<Cover<T>,U> { }
5
5
| ^^^^^^^^^^^^^^^^^^^^^----------------
6
-
| | |
7
-
| | `Pair` is not defined in the current crate
8
-
| impl doesn't use only types from inside the current crate
6
+
| |
7
+
| `Pair` is not defined in the current crate
9
8
|
9
+
= note: impl doesn't have any local type before any uncovered type parameters
10
+
= note: for more information see https://doc.rust-lang.org/reference/items/implementations.html#orphan-rules
10
11
= note: define and implement a trait or new type instead
Copy file name to clipboardexpand all lines: tests/ui/coherence/coherence-fundamental-trait-objects.stderr
+4-3
Original file line number
Diff line number
Diff line change
@@ -3,10 +3,11 @@ error[E0117]: only traits defined in the current crate can be implemented for ar
3
3
|
4
4
LL | impl Misc for dyn Fundamental<Local> {}
5
5
| ^^^^^^^^^^^^^^----------------------
6
-
| | |
7
-
| | `dyn Fundamental<Local>` is not defined in the current crate
8
-
| impl doesn't use only types from inside the current crate
6
+
| |
7
+
| `dyn Fundamental<Local>` is not defined in the current crate
9
8
|
9
+
= note: impl doesn't have any local type before any uncovered type parameters
10
+
= note: for more information see https://doc.rust-lang.org/reference/items/implementations.html#orphan-rules
10
11
= note: define and implement a trait or new type instead
Copy file name to clipboardexpand all lines: tests/ui/coherence/coherence-impl-trait-for-marker-trait-negative.stderr
+4-3
Original file line number
Diff line number
Diff line change
@@ -39,10 +39,11 @@ error[E0117]: only traits defined in the current crate can be implemented for ar
39
39
|
40
40
LL | impl !Send for dyn Marker2 {}
41
41
| ^^^^^^^^^^^^^^^-----------
42
-
| | |
43
-
| | `dyn Marker2` is not defined in the current crate
44
-
| impl doesn't use only types from inside the current crate
42
+
| |
43
+
| `dyn Marker2` is not defined in the current crate
45
44
|
45
+
= note: impl doesn't have any local type before any uncovered type parameters
46
+
= note: for more information see https://doc.rust-lang.org/reference/items/implementations.html#orphan-rules
46
47
= note: define and implement a trait or new type instead
47
48
48
49
error[E0321]: cross-crate traits with a default impl, like `Send`, can only be implemented for a struct/enum type, not `(dyn Object + 'static)`
Copy file name to clipboardexpand all lines: tests/ui/coherence/coherence-impl-trait-for-marker-trait-positive.stderr
+4-3
Original file line number
Diff line number
Diff line change
@@ -39,10 +39,11 @@ error[E0117]: only traits defined in the current crate can be implemented for ar
39
39
|
40
40
LL | unsafe impl Send for dyn Marker2 {}
41
41
| ^^^^^^^^^^^^^^^^^^^^^-----------
42
-
| | |
43
-
| | `dyn Marker2` is not defined in the current crate
44
-
| impl doesn't use only types from inside the current crate
42
+
| |
43
+
| `dyn Marker2` is not defined in the current crate
45
44
|
45
+
= note: impl doesn't have any local type before any uncovered type parameters
46
+
= note: for more information see https://doc.rust-lang.org/reference/items/implementations.html#orphan-rules
46
47
= note: define and implement a trait or new type instead
47
48
48
49
error[E0321]: cross-crate traits with a default impl, like `Send`, can only be implemented for a struct/enum type, not `(dyn Object + 'static)`
Copy file name to clipboardexpand all lines: tests/ui/coherence/coherence-impls-copy.stderr
+16-12
Original file line number
Diff line number
Diff line change
@@ -13,21 +13,23 @@ error[E0117]: only traits defined in the current crate can be implemented for ar
13
13
|
14
14
LL | impl Copy for &'static [NotSync] {}
15
15
| ^^^^^^^^^^^^^^------------------
16
-
| | |
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
16
+
| |
17
+
| this is not defined in the current crate because slices are always foreign
19
18
|
19
+
= note: impl doesn't have any local type before any uncovered type parameters
20
+
= note: for more information see https://doc.rust-lang.org/reference/items/implementations.html#orphan-rules
20
21
= note: define and implement a trait or new type instead
21
22
22
23
error[E0117]: only traits defined in the current crate can be implemented for primitive types
23
24
--> $DIR/coherence-impls-copy.rs:5:1
24
25
|
25
26
LL | impl Copy for i32 {}
26
27
| ^^^^^^^^^^^^^^---
27
-
| | |
28
-
| | `i32` is not defined in the current crate
29
-
| impl doesn't use only types from inside the current crate
28
+
| |
29
+
| `i32` is not defined in the current crate
30
30
|
31
+
= note: impl doesn't have any local type before any uncovered type parameters
32
+
= note: for more information see https://doc.rust-lang.org/reference/items/implementations.html#orphan-rules
31
33
= note: define and implement a trait or new type instead
32
34
33
35
error[E0206]: the trait `Copy` cannot be implemented for this type
@@ -41,10 +43,11 @@ error[E0117]: only traits defined in the current crate can be implemented for ar
41
43
|
42
44
LL | impl Copy for (MyType, MyType) {}
43
45
| ^^^^^^^^^^^^^^----------------
44
-
| | |
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
+
| |
47
+
| this is not defined in the current crate because tuples are always foreign
47
48
|
49
+
= note: impl doesn't have any local type before any uncovered type parameters
50
+
= note: for more information see https://doc.rust-lang.org/reference/items/implementations.html#orphan-rules
48
51
= note: define and implement a trait or new type instead
49
52
50
53
error[E0206]: the trait `Copy` cannot be implemented for this type
@@ -58,10 +61,11 @@ error[E0117]: only traits defined in the current crate can be implemented for ar
58
61
|
59
62
LL | impl Copy for [MyType] {}
60
63
| ^^^^^^^^^^^^^^--------
61
-
| | |
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
64
+
| |
65
+
| this is not defined in the current crate because slices are always foreign
64
66
|
67
+
= note: impl doesn't have any local type before any uncovered type parameters
68
+
= note: for more information see https://doc.rust-lang.org/reference/items/implementations.html#orphan-rules
65
69
= note: define and implement a trait or new type instead
66
70
67
71
error[E0206]: the trait `Copy` cannot be implemented for this type
Copy file name to clipboardexpand all lines: tests/ui/coherence/coherence-impls-send.stderr
+12-9
Original file line number
Diff line number
Diff line change
@@ -3,21 +3,23 @@ error[E0117]: only traits defined in the current crate can be implemented for ar
3
3
|
4
4
LL | unsafe impl Send for &'static [NotSync] {}
5
5
| ^^^^^^^^^^^^^^^^^^^^^------------------
6
-
| | |
7
-
| | this is not defined in the current crate because slices are always foreign
8
-
| impl doesn't use only types from inside the current crate
6
+
| |
7
+
| this is not defined in the current crate because slices are always foreign
9
8
|
9
+
= note: impl doesn't have any local type before any uncovered type parameters
10
+
= note: for more information see https://doc.rust-lang.org/reference/items/implementations.html#orphan-rules
10
11
= note: define and implement a trait or new type instead
11
12
12
13
error[E0117]: only traits defined in the current crate can be implemented for arbitrary types
13
14
--> $DIR/coherence-impls-send.rs:16:1
14
15
|
15
16
LL | unsafe impl Send for (MyType, MyType) {}
16
17
| ^^^^^^^^^^^^^^^^^^^^^----------------
17
-
| | |
18
-
| | this is not defined in the current crate because tuples are always foreign
19
-
| impl doesn't use only types from inside the current crate
18
+
| |
19
+
| this is not defined in the current crate because tuples are always foreign
20
20
|
21
+
= note: impl doesn't have any local type before any uncovered type parameters
22
+
= note: for more information see https://doc.rust-lang.org/reference/items/implementations.html#orphan-rules
21
23
= note: define and implement a trait or new type instead
22
24
23
25
error[E0321]: cross-crate traits with a default impl, like `Send`, can only be implemented for a struct/enum type, not `&'static NotSync`
@@ -31,10 +33,11 @@ error[E0117]: only traits defined in the current crate can be implemented for ar
31
33
|
32
34
LL | unsafe impl Send for [MyType] {}
33
35
| ^^^^^^^^^^^^^^^^^^^^^--------
34
-
| | |
35
-
| | this is not defined in the current crate because slices are always foreign
36
-
| impl doesn't use only types from inside the current crate
36
+
| |
37
+
| this is not defined in the current crate because slices are always foreign
37
38
|
39
+
= note: impl doesn't have any local type before any uncovered type parameters
40
+
= note: for more information see https://doc.rust-lang.org/reference/items/implementations.html#orphan-rules
38
41
= note: define and implement a trait or new type instead
Copy file name to clipboardexpand all lines: tests/ui/coherence/coherence-impls-sized.stderr
+12-9
Original file line number
Diff line number
Diff line change
@@ -21,10 +21,11 @@ error[E0117]: only traits defined in the current crate can be implemented for ar
21
21
|
22
22
LL | impl Sized for (MyType, MyType) {}
23
23
| ^^^^^^^^^^^^^^^----------------
24
-
| | |
25
-
| | this is not defined in the current crate because tuples are always foreign
26
-
| impl doesn't use only types from inside the current crate
24
+
| |
25
+
| this is not defined in the current crate because tuples are always foreign
27
26
|
27
+
= note: impl doesn't have any local type before any uncovered type parameters
28
+
= note: for more information see https://doc.rust-lang.org/reference/items/implementations.html#orphan-rules
28
29
= note: define and implement a trait or new type instead
29
30
30
31
error[E0322]: explicit impls for the `Sized` trait are not permitted
@@ -44,10 +45,11 @@ error[E0117]: only traits defined in the current crate can be implemented for ar
44
45
|
45
46
LL | impl Sized for [MyType] {}
46
47
| ^^^^^^^^^^^^^^^--------
47
-
| | |
48
-
| | this is not defined in the current crate because slices are always foreign
49
-
| impl doesn't use only types from inside the current crate
48
+
| |
49
+
| this is not defined in the current crate because slices are always foreign
50
50
|
51
+
= note: impl doesn't have any local type before any uncovered type parameters
52
+
= note: for more information see https://doc.rust-lang.org/reference/items/implementations.html#orphan-rules
51
53
= note: define and implement a trait or new type instead
52
54
53
55
error[E0322]: explicit impls for the `Sized` trait are not permitted
@@ -61,10 +63,11 @@ error[E0117]: only traits defined in the current crate can be implemented for ar
61
63
|
62
64
LL | impl Sized for &'static [NotSync] {}
63
65
| ^^^^^^^^^^^^^^^------------------
64
-
| | |
65
-
| | this is not defined in the current crate because slices are always foreign
66
-
| impl doesn't use only types from inside the current crate
66
+
| |
67
+
| this is not defined in the current crate because slices are always foreign
67
68
|
69
+
= note: impl doesn't have any local type before any uncovered type parameters
70
+
= note: for more information see https://doc.rust-lang.org/reference/items/implementations.html#orphan-rules
68
71
= note: define and implement a trait or new type instead
Copy file name to clipboardexpand all lines: tests/ui/coherence/coherence-negative-impls-copy-bad.stderr
+12-9
Original file line number
Diff line number
Diff line change
@@ -3,32 +3,35 @@ error[E0117]: only traits defined in the current crate can be implemented for ar
3
3
|
4
4
LL | impl !Copy for str {}
5
5
| ^^^^^^^^^^^^^^^---
6
-
| | |
7
-
| | `str` is not defined in the current crate
8
-
| impl doesn't use only types from inside the current crate
6
+
| |
7
+
| `str` is not defined in the current crate
9
8
|
9
+
= note: impl doesn't have any local type before any uncovered type parameters
10
+
= note: for more information see https://doc.rust-lang.org/reference/items/implementations.html#orphan-rules
10
11
= note: define and implement a trait or new type instead
11
12
12
13
error[E0117]: only traits defined in the current crate can be implemented for arbitrary types
13
14
--> $DIR/coherence-negative-impls-copy-bad.rs:7:1
14
15
|
15
16
LL | impl !Copy for fn() {}
16
17
| ^^^^^^^^^^^^^^^----
17
-
| | |
18
-
| | `fn()` is not defined in the current crate
19
-
| impl doesn't use only types from inside the current crate
18
+
| |
19
+
| `fn()` is not defined in the current crate
20
20
|
21
+
= note: impl doesn't have any local type before any uncovered type parameters
22
+
= note: for more information see https://doc.rust-lang.org/reference/items/implementations.html#orphan-rules
21
23
= note: define and implement a trait or new type instead
22
24
23
25
error[E0117]: only traits defined in the current crate can be implemented for arbitrary types
| | this is not defined in the current crate because tuples are always foreign
30
-
| impl doesn't use only types from inside the current crate
30
+
| |
31
+
| this is not defined in the current crate because tuples are always foreign
31
32
|
33
+
= note: impl doesn't have any local type before any uncovered type parameters
34
+
= note: for more information see https://doc.rust-lang.org/reference/items/implementations.html#orphan-rules
32
35
= note: define and implement a trait or new type instead
Copy file name to clipboardexpand all lines: tests/ui/coherence/coherence-orphan.stderr
+9-7
Original file line number
Diff line number
Diff line change
@@ -3,22 +3,24 @@ error[E0117]: only traits defined in the current crate can be implemented for pr
3
3
|
4
4
LL | impl TheTrait<usize> for isize {}
5
5
| ^^^^^---------------^^^^^-----
6
-
| | | |
7
-
| | | `isize` is not defined in the current crate
8
-
| | `usize` is not defined in the current crate
9
-
| impl doesn't use only types from inside the current crate
6
+
| | |
7
+
| | `isize` is not defined in the current crate
8
+
| `usize` is not defined in the current crate
10
9
|
10
+
= note: impl doesn't have any local type before any uncovered type parameters
11
+
= note: for more information see https://doc.rust-lang.org/reference/items/implementations.html#orphan-rules
11
12
= note: define and implement a trait or new type instead
12
13
13
14
error[E0117]: only traits defined in the current crate can be implemented for types defined outside of the crate
14
15
--> $DIR/coherence-orphan.rs:17:1
15
16
|
16
17
LL | impl !Send for Vec<isize> {}
17
18
| ^^^^^^^^^^^^^^^----------
18
-
| | |
19
-
| | `Vec` is not defined in the current crate
20
-
| impl doesn't use only types from inside the current crate
19
+
| |
20
+
| `Vec` is not defined in the current crate
21
21
|
22
+
= note: impl doesn't have any local type before any uncovered type parameters
23
+
= note: for more information see https://doc.rust-lang.org/reference/items/implementations.html#orphan-rules
22
24
= note: define and implement a trait or new type instead
Copy file name to clipboardexpand all lines: tests/ui/coherence/coherence-overlapping-pairs.stderr
+4-3
Original file line number
Diff line number
Diff line change
@@ -3,10 +3,11 @@ error[E0117]: only traits defined in the current crate can be implemented for ty
3
3
|
4
4
LL | impl<T> Remote for lib::Pair<T,Foo> { }
5
5
| ^^^^^^^^^^^^^^^^^^^----------------
6
-
| | |
7
-
| | `Pair` is not defined in the current crate
8
-
| impl doesn't use only types from inside the current crate
6
+
| |
7
+
| `Pair` is not defined in the current crate
9
8
|
9
+
= note: impl doesn't have any local type before any uncovered type parameters
10
+
= note: for more information see https://doc.rust-lang.org/reference/items/implementations.html#orphan-rules
10
11
= note: define and implement a trait or new type instead
0 commit comments