@@ -8,8 +8,16 @@ LL | let _ = Iterator::next(&mut ());
8
8
|
9
9
= help: the trait `Iterator` is not implemented for `()`
10
10
11
+ error[E0277]: `()` is not an iterator
12
+ --> $DIR/issue-28098.rs:2:13
13
+ |
14
+ LL | let _ = Iterator::next(&mut ());
15
+ | ^^^^^^^^^^^^^^^^^^^^^^^ `()` is not an iterator
16
+ |
17
+ = help: the trait `Iterator` is not implemented for `()`
18
+
11
19
error[E0277]: `bool` is not an iterator
12
- --> $DIR/issue-28098.rs:5 :14
20
+ --> $DIR/issue-28098.rs:7 :14
13
21
|
14
22
LL | for _ in false {}
15
23
| ^^^^^ `bool` is not an iterator
@@ -18,7 +26,7 @@ LL | for _ in false {}
18
26
= note: required for `bool` to implement `IntoIterator`
19
27
20
28
error[E0277]: `()` is not an iterator
21
- --> $DIR/issue-28098.rs:8 :28
29
+ --> $DIR/issue-28098.rs:10 :28
22
30
|
23
31
LL | let _ = Iterator::next(&mut ());
24
32
| -------------- ^^^^^^^ `()` is not an iterator
@@ -28,7 +36,23 @@ LL | let _ = Iterator::next(&mut ());
28
36
= help: the trait `Iterator` is not implemented for `()`
29
37
30
38
error[E0277]: `()` is not an iterator
31
- --> $DIR/issue-28098.rs:17:28
39
+ --> $DIR/issue-28098.rs:10:13
40
+ |
41
+ LL | let _ = Iterator::next(&mut ());
42
+ | ^^^^^^^^^^^^^^^^^^^^^^^ `()` is not an iterator
43
+ |
44
+ = help: the trait `Iterator` is not implemented for `()`
45
+
46
+ error[E0277]: `()` is not an iterator
47
+ --> $DIR/issue-28098.rs:2:13
48
+ |
49
+ LL | let _ = Iterator::next(&mut ());
50
+ | ^^^^^^^^^^^^^^ `()` is not an iterator
51
+ |
52
+ = help: the trait `Iterator` is not implemented for `()`
53
+
54
+ error[E0277]: `()` is not an iterator
55
+ --> $DIR/issue-28098.rs:20:28
32
56
|
33
57
LL | let _ = Iterator::next(&mut ());
34
58
| -------------- ^^^^^^^ `()` is not an iterator
@@ -38,7 +62,15 @@ LL | let _ = Iterator::next(&mut ());
38
62
= help: the trait `Iterator` is not implemented for `()`
39
63
40
64
error[E0277]: `()` is not an iterator
41
- --> $DIR/issue-28098.rs:20:28
65
+ --> $DIR/issue-28098.rs:20:13
66
+ |
67
+ LL | let _ = Iterator::next(&mut ());
68
+ | ^^^^^^^^^^^^^^^^^^^^^^^ `()` is not an iterator
69
+ |
70
+ = help: the trait `Iterator` is not implemented for `()`
71
+
72
+ error[E0277]: `()` is not an iterator
73
+ --> $DIR/issue-28098.rs:25:28
42
74
|
43
75
LL | let _ = Iterator::next(&mut ());
44
76
| -------------- ^^^^^^^ `()` is not an iterator
@@ -47,15 +79,31 @@ LL | let _ = Iterator::next(&mut ());
47
79
|
48
80
= help: the trait `Iterator` is not implemented for `()`
49
81
82
+ error[E0277]: `()` is not an iterator
83
+ --> $DIR/issue-28098.rs:25:13
84
+ |
85
+ LL | let _ = Iterator::next(&mut ());
86
+ | ^^^^^^^^^^^^^^^^^^^^^^^ `()` is not an iterator
87
+ |
88
+ = help: the trait `Iterator` is not implemented for `()`
89
+
50
90
error[E0277]: `bool` is not an iterator
51
- --> $DIR/issue-28098.rs:23 :14
91
+ --> $DIR/issue-28098.rs:29 :14
52
92
|
53
93
LL | for _ in false {}
54
94
| ^^^^^ `bool` is not an iterator
55
95
|
56
96
= help: the trait `Iterator` is not implemented for `bool`
57
97
= note: required for `bool` to implement `IntoIterator`
58
98
59
- error: aborting due to 6 previous errors
99
+ error[E0277]: `()` is not an iterator
100
+ --> $DIR/issue-28098.rs:20:13
101
+ |
102
+ LL | let _ = Iterator::next(&mut ());
103
+ | ^^^^^^^^^^^^^^ `()` is not an iterator
104
+ |
105
+ = help: the trait `Iterator` is not implemented for `()`
106
+
107
+ error: aborting due to 12 previous errors
60
108
61
109
For more information about this error, try `rustc --explain E0277`.
0 commit comments