error[E06002]: use of unassigned variable ┌─ tests/move_check/translated_ir_tests/move/commands/else_moves_if_doesnt.move:5:13 │ 4 │ let y = if (true) 0 else move x; y; │ ------ │ │ │ The value of 'x' might have been previously moved here. │ Suggestion: use 'copy x' to avoid the move. 5 │ assert!(x == 0, 42); │ ^ Invalid usage of previously moved variable 'x'.