In the following test case: ``` fn test(-x: uint) {} fn main() { let i = 3u; uint::range(0u, 10u) {|_x| test(i)} } ``` the variable `i` is de-initialized multiple times.