rust/src/test/ui/nll/issue-53807.rs

10 lines
191 B
Rust
Raw Normal View History

pub fn main(){
let maybe = Some(vec![true, true]);
2018-11-27 03:56:36 -06:00
loop {
if let Some(thing) = maybe {
2018-11-27 03:56:36 -06:00
//~^ ERROR use of partially moved value
//~| ERROR use of moved value
}
}
}