rust/src/test/ui/borrowck/issue-41962.rs
Christopher Vittal cfdd6ba77e Update tests
2019-05-03 03:11:37 -04:00

10 lines
169 B
Rust

pub fn main(){
let maybe = Some(vec![true, true]);
loop {
if let Some(thing) = maybe {
}
//~^^ ERROR use of moved value [E0382]
}
}