blob: f6b30a1a0706d0ecb2ace5d2874e1301aa6bdbda [file] [log] [blame]
package main
func main() {
p := new(int);
*p = 0;
if *p != 0 { panic(0) }
}