//# run main() { let x: u64; let y: u64; label b0: x = 5; // valid copy y = copy(x); // valid copy assert(copy(y) == 5, 42); return; }