This one does: ``` fn main() { auto i = 0; while (i < 20) { { auto pt2 = @i; auto pt = @i; i = *pt + 1; } } } ```