pointer-1.go 83 B

12345678
  1. package main
  2. func main() {
  3. p := new(int);
  4. *p = 0;
  5. if *p != 0 { panic(0) }
  6. }