rust/tests/ui/borrowck/borrowck-for-loop-correct-c...

25 lines
419 B
Rust

// Issue #16205.
struct Foo {
a: [Box<isize>; 3],
}
fn main() {
let mut y = 1;
let x = Some(&mut y);
for &a in x.iter() { //~ ERROR cannot move out
}
let f = Foo {
a: [Box::new(3), Box::new(4), Box::new(5)],
};
for &a in &f.a { //~ ERROR cannot move out
}
let x: Option<Box<_>> = Some(Box::new(1));
for &a in x.iter() { //~ ERROR cannot move out
}
}