Josh Bleecher Snyder | 3081261 | 2014-02-26 12:25:13 -0800 | [diff] [blame] | 1 | // build |
| 2 | |
Emmanuel Odeke | 53fd522 | 2016-04-10 14:32:26 -0700 | [diff] [blame] | 3 | // Copyright 2014 The Go Authors. All rights reserved. |
Josh Bleecher Snyder | 3081261 | 2014-02-26 12:25:13 -0800 | [diff] [blame] | 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() {} |