//# run main() { let x: u64; label b0: x = 0; label loop: x = move(x) + 1; jump loop_cont; label loop_cont: assert(move(x) == 1, 42); return; }