<pre>package main func main() { m := make(map[uint64][8]*int) x := 1234 m[0][0] = &x if m[0][0] == nil { panic("You fell over a trip wire") } }</pre>