In assignments: ``` var p: ^int fn foo(): int { p = null return 666 } fn main() { p = new(int, 42) p^ = foo() // Crash! printf("%llv\n", p) } ```