2023-10-04 01:10:51 +00:00
|
|
|
error[E0191]: the value of the associated type `Item` in `Iterator` must be specified
|
2024-11-30 02:47:40 +00:00
|
|
|
--> $DIR/trait-hidden-method.rs:4:33
|
2023-02-14 14:31:18 +00:00
|
|
|
|
|
|
|
|
|
LL | Box::new(1..=10) as Box<dyn Iterator>
|
|
|
|
|
| ^^^^^^^^ help: specify the associated type: `Iterator<Item = Type>`
|
|
|
|
|
|
2024-11-30 02:47:40 +00:00
|
|
|
error: aborting due to 1 previous error
|
2023-02-14 14:31:18 +00:00
|
|
|
|
2024-11-30 02:47:40 +00:00
|
|
|
For more information about this error, try `rustc --explain E0191`.
|