Lines Matching full:nil
7 // Test that the implementation catches nil ptr indirection
15 // at a 256 MB offset from a nil pointer might not
18 // these nil pointer accesses, not just relying on the hardware.
51 if recover() == nil {
60 var p *[1 << 30]byte = nil
67 var p *[1 << 30]byte = nil
76 var p *[1 << 30]byte = nil
96 var p *[1 << 30]byte = nil
102 var p *[1 << 30]byte = nil
112 return nil
156 var p *T = nil
169 println((*[1]int)(nil)[:])
173 for i := range (*[1]int)(nil)[:] {
179 for i, v := range (*[1]int)(nil)[:] {