Skip to content

Commit 73c026e

Browse files
committed
test: add testcase for gccgo-specific issue 10284
Change-Id: I624b336a9eb27fbbc8ef13f141023b4f60966245 Reviewed-on: https://go-review.googlesource.com/8240 Reviewed-by: Ian Lance Taylor <[email protected]>
1 parent f78dc1d commit 73c026e

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

test/fixedbugs/issue10284.go

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
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+
10+
package p
11+
12+
import "unsafe"
13+
14+
type T uintptr
15+
16+
var _ unsafe.Pointer = unsafe.Pointer(T(0))

0 commit comments

Comments
 (0)