blob: 9f59f9c199a331b8a8a212dcf16fe6669f3d5a7c [file] [log] [blame]
// run-rustfix
fn main() {
let v = &mut Vec::<i32>::new();
for _ in v {} //~ ERROR E0277
let v = &mut [1u8];
for _ in v {} //~ ERROR E0277
}