summaryrefslogtreecommitdiffstats
path: root/tests/ui/illegal-sized-bound/mutability-mismatch-arg.rs
blob: 3b02c5a5ad15a5dc5b42e118f845624dedeac8e4 (plain)
1
2
3
4
5
6
7
8
9
// run-rustfix
fn test(t: &dyn Iterator<Item=&u64>) -> u64 {
     *t.min().unwrap() //~ ERROR the `min` method cannot be invoked on
}

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