summaryrefslogtreecommitdiffstats
path: root/src/test/ui/suggestions/imm-ref-trait-object.rs
blob: 288d6c699f59a03a38335fea9aef48938e33288b (plain)
1
2
3
4
5
6
7
8
fn test(t: &dyn Iterator<Item=&u64>) -> u64 {
     t.min().unwrap() //~ ERROR the `min` method cannot be invoked on a trait object
}

fn main() {
     let array = [0u64];
     test(&mut array.iter());
}