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: tests/ui/traits/issue-50480.stderr
+5-23
Original file line number
Diff line number
Diff line change
@@ -38,7 +38,7 @@ LL | struct Foo<NotDefined>(N, NotDefined, <i32 as Iterator>::Item, Vec<i32>, St
38
38
| ++++++++++++
39
39
40
40
error[E0412]: cannot find type `N` in this scope
41
-
--> $DIR/issue-50480.rs:12:18
41
+
--> $DIR/issue-50480.rs:11:18
42
42
|
43
43
LL | struct Bar<T>(T, N, NotDefined, <i32 as Iterator>::Item, Vec<i32>, String);
44
44
| - ^
@@ -55,20 +55,11 @@ LL | struct Bar<T, N>(T, N, NotDefined, <i32 as Iterator>::Item, Vec<i32>, Strin
55
55
| +++
56
56
57
57
error[E0412]: cannot find type `NotDefined` in this scope
58
-
--> $DIR/issue-50480.rs:12:21
58
+
--> $DIR/issue-50480.rs:11:21
59
59
|
60
60
LL | struct Bar<T>(T, N, NotDefined, <i32 as Iterator>::Item, Vec<i32>, String);
61
61
| ^^^^^^^^^^ not found in this scope
62
62
63
-
error[E0277]: `i32` is not an iterator
64
-
--> $DIR/issue-50480.rs:3:27
65
-
|
66
-
LL | struct Foo(N, NotDefined, <i32 as Iterator>::Item, Vec<i32>, String);
67
-
| ^^^^^^^^^^^^^^^^^^^^^^^ `i32` is not an iterator
68
-
|
69
-
= help: the trait `Iterator` is not implemented for `i32`
70
-
= note: if you want to iterate between `start` until a value `end`, use the exclusive range syntax `start..end` or the inclusive range syntax `start..=end`
71
-
72
63
error[E0204]: the trait `Copy` may not be implemented for this type
= note: this error originates in the derive macro `Copy` (in Nightly builds, run with -Z macro-backtrace for more info)
84
75
85
-
error[E0277]: `i32` is not an iterator
86
-
--> $DIR/issue-50480.rs:12:33
87
-
|
88
-
LL | struct Bar<T>(T, N, NotDefined, <i32 as Iterator>::Item, Vec<i32>, String);
89
-
| ^^^^^^^^^^^^^^^^^^^^^^^ `i32` is not an iterator
90
-
|
91
-
= help: the trait `Iterator` is not implemented for `i32`
92
-
= note: if you want to iterate between `start` until a value `end`, use the exclusive range syntax `start..end` or the inclusive range syntax `start..=end`
93
-
94
76
error[E0204]: the trait `Copy` may not be implemented for this type
95
-
--> $DIR/issue-50480.rs:10:17
77
+
--> $DIR/issue-50480.rs:9:17
96
78
|
97
79
LL | #[derive(Clone, Copy)]
98
80
| ^^^^
@@ -104,7 +86,7 @@ LL | struct Bar<T>(T, N, NotDefined, <i32 as Iterator>::Item, Vec<i32>, String);
104
86
|
105
87
= note: this error originates in the derive macro `Copy` (in Nightly builds, run with -Z macro-backtrace for more info)
106
88
107
-
error: aborting due to 10 previous errors
89
+
error: aborting due to 8 previous errors
108
90
109
-
Some errors have detailed explanations: E0204, E0277, E0412.
91
+
Some errors have detailed explanations: E0204, E0412.
110
92
For more information about an error, try `rustc --explain E0204`.
0 commit comments