]> Cypherpunks.ru repositories - gostls13.git/blob - test/nilptr4.go
3dd7d4e026c4e43e97f2c027e7db3400c2911f90
[gostls13.git] / test / nilptr4.go
1 // build
2
3 // Copyright 2014 The Go Authors.  All rights reserved.
4 // Use of this source code is governed by a BSD-style
5 // license that can be found in the LICENSE file.
6
7 // Test that the compiler does not crash during compilation.
8
9 package main
10
11 import "unsafe"
12
13 // Issue 7413
14 func f1() {
15         type t struct {
16                 i int
17         }
18
19         var v *t
20         _ = int(uintptr(unsafe.Pointer(&v.i)))
21         _ = int32(uintptr(unsafe.Pointer(&v.i)))
22 }
23
24 func main() {}