struct Point { x Int y Int } main() { p := new(Point) p.x = 4 p.y = 2 delete(p) }