blob: 37c20535229610f60879c7fe58763e0d164e9128 [file] [log] [blame]
error: the `min` method cannot be invoked on a trait object
--> $DIR/imm-ref-trait-object.rs:2:8
|
LL | t.min().unwrap()
| ^^^
|
::: $SRC_DIR/libcore/iter/traits/iterator.rs:LL:COL
|
LL | Self: Sized,
| ----- this has a `Sized` requirement
|
= note: you need `&mut dyn std::iter::Iterator<Item = &u64>` instead of `&dyn std::iter::Iterator<Item = &u64>`
error: aborting due to previous error