blob: d41086186f8d7826cc4f33c1b8c1d4adc14ddf00 [file] [log] [blame]
error[E0308]: mismatched types
--> $DIR/issue-57673-ice-on-deref-of-boxed-trait.rs:5:5
|
LL | fn ice(x: Box<dyn Iterator<Item=()>>) {
| - possibly return type missing here?
LL | *x
| ^^ expected (), found trait std::iter::Iterator
|
= note: expected type `()`
found type `(dyn std::iter::Iterator<Item = ()> + 'static)`
error: aborting due to previous error
For more information about this error, try `rustc --explain E0308`.