@@ -15,35 +15,29 @@ error[E0404]: expected trait, found derive macro `Clone`
15
15
LL | impl Clone for Test {}
16
16
| ^^^^^ not a trait
17
17
|
18
- help: consider importing one of these items instead
18
+ help: consider importing this trait instead
19
19
|
20
20
LL | use std::clone::Clone;
21
21
|
22
- LL | use std::prelude::v1::Clone;
23
- |
24
22
25
23
error[E0405]: cannot find trait `Iterator` in this scope
26
24
--> $DIR/no-implicit-prelude-nested.rs:13:14
27
25
|
28
26
LL | impl Iterator for Test {}
29
27
| ^^^^^^^^ not found in this scope
30
28
|
31
- help: consider importing one of these items
29
+ help: consider importing this trait
32
30
|
33
31
LL | use std::iter::Iterator;
34
32
|
35
- LL | use std::prelude::v1::Iterator;
36
- |
37
33
38
34
error[E0405]: cannot find trait `ToString` in this scope
39
35
--> $DIR/no-implicit-prelude-nested.rs:14:14
40
36
|
41
37
LL | impl ToString for Test {}
42
38
| ^^^^^^^^ not found in this scope
43
39
|
44
- help: consider importing one of these items
45
- |
46
- LL | use std::prelude::v1::ToString;
40
+ help: consider importing this trait
47
41
|
48
42
LL | use std::string::ToString;
49
43
|
@@ -60,12 +54,10 @@ error[E0425]: cannot find function `drop` in this scope
60
54
LL | drop(2)
61
55
| ^^^^ not found in this scope
62
56
|
63
- help: consider importing one of these items
57
+ help: consider importing this function
64
58
|
65
59
LL | use std::mem::drop;
66
60
|
67
- LL | use std::prelude::v1::drop;
68
- |
69
61
70
62
error[E0405]: cannot find trait `Add` in this scope
71
63
--> $DIR/no-implicit-prelude-nested.rs:23:10
@@ -84,35 +76,29 @@ error[E0404]: expected trait, found derive macro `Clone`
84
76
LL | impl Clone for Test {}
85
77
| ^^^^^ not a trait
86
78
|
87
- help: consider importing one of these items instead
79
+ help: consider importing this trait instead
88
80
|
89
81
LL | use std::clone::Clone;
90
82
|
91
- LL | use std::prelude::v1::Clone;
92
- |
93
83
94
84
error[E0405]: cannot find trait `Iterator` in this scope
95
85
--> $DIR/no-implicit-prelude-nested.rs:25:10
96
86
|
97
87
LL | impl Iterator for Test {}
98
88
| ^^^^^^^^ not found in this scope
99
89
|
100
- help: consider importing one of these items
90
+ help: consider importing this trait
101
91
|
102
92
LL | use std::iter::Iterator;
103
93
|
104
- LL | use std::prelude::v1::Iterator;
105
- |
106
94
107
95
error[E0405]: cannot find trait `ToString` in this scope
108
96
--> $DIR/no-implicit-prelude-nested.rs:26:10
109
97
|
110
98
LL | impl ToString for Test {}
111
99
| ^^^^^^^^ not found in this scope
112
100
|
113
- help: consider importing one of these items
114
- |
115
- LL | use std::prelude::v1::ToString;
101
+ help: consider importing this trait
116
102
|
117
103
LL | use std::string::ToString;
118
104
|
@@ -129,12 +115,10 @@ error[E0425]: cannot find function `drop` in this scope
129
115
LL | drop(2)
130
116
| ^^^^ not found in this scope
131
117
|
132
- help: consider importing one of these items
118
+ help: consider importing this function
133
119
|
134
120
LL | use std::mem::drop;
135
121
|
136
- LL | use std::prelude::v1::drop;
137
- |
138
122
139
123
error[E0405]: cannot find trait `Add` in this scope
140
124
--> $DIR/no-implicit-prelude-nested.rs:38:14
@@ -153,35 +137,29 @@ error[E0404]: expected trait, found derive macro `Clone`
153
137
LL | impl Clone for Test {}
154
138
| ^^^^^ not a trait
155
139
|
156
- help: consider importing one of these items instead
140
+ help: consider importing this trait instead
157
141
|
158
142
LL | use std::clone::Clone;
159
143
|
160
- LL | use std::prelude::v1::Clone;
161
- |
162
144
163
145
error[E0405]: cannot find trait `Iterator` in this scope
164
146
--> $DIR/no-implicit-prelude-nested.rs:40:14
165
147
|
166
148
LL | impl Iterator for Test {}
167
149
| ^^^^^^^^ not found in this scope
168
150
|
169
- help: consider importing one of these items
151
+ help: consider importing this trait
170
152
|
171
153
LL | use std::iter::Iterator;
172
154
|
173
- LL | use std::prelude::v1::Iterator;
174
- |
175
155
176
156
error[E0405]: cannot find trait `ToString` in this scope
177
157
--> $DIR/no-implicit-prelude-nested.rs:41:14
178
158
|
179
159
LL | impl ToString for Test {}
180
160
| ^^^^^^^^ not found in this scope
181
161
|
182
- help: consider importing one of these items
183
- |
184
- LL | use std::prelude::v1::ToString;
162
+ help: consider importing this trait
185
163
|
186
164
LL | use std::string::ToString;
187
165
|
@@ -198,12 +176,10 @@ error[E0425]: cannot find function `drop` in this scope
198
176
LL | drop(2)
199
177
| ^^^^ not found in this scope
200
178
|
201
- help: consider importing one of these items
179
+ help: consider importing this function
202
180
|
203
181
LL | use std::mem::drop;
204
182
|
205
- LL | use std::prelude::v1::drop;
206
- |
207
183
208
184
error: aborting due to 18 previous errors
209
185
0 commit comments