fn main() { let xs : Vec> = vec![Some(1), None]; for Some(x) in xs {} //~^ ERROR E0005 }