1 2 3 4 5 6
fn main() { let orig = vec![true]; for _val in orig {} let _closure = || orig; //~^ ERROR use of moved value: `orig` }