1// 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)) 17