blob: e89d6f4418de2f3076250c1a301017e7b38c6af8 [file] [log] [blame]
Shenghou Ma73c026e2015-03-30 00:30:28 -04001// compile
2
3// Copyright 2015 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// Issue 10284: gccgo failed to allow converting a user-defined
8// type whose underlying type is uintptr to unsafe.Pointer.
9
10package p
11
12import "unsafe"
13
14type T uintptr
15
16var _ unsafe.Pointer = unsafe.Pointer(T(0))