]> Cypherpunks repositories - gostls13.git/commitdiff
test: add test case for incorrect gccgo compilation error
authorIan Lance Taylor <iant@golang.org>
Thu, 25 Jan 2018 18:33:00 +0000 (10:33 -0800)
committerBrad Fitzpatrick <bradfitz@golang.org>
Wed, 14 Feb 2018 20:13:22 +0000 (20:13 +0000)
Updates #23489

Change-Id: Ie846ccfe4c4d9295857f5da6863ac8f2ac0f2f6a
Reviewed-on: https://go-review.googlesource.com/89935
Run-TryBot: Ian Lance Taylor <iant@golang.org>
TryBot-Result: Gobot Gobot <gobot@golang.org>
Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
test/fixedbugs/issue23489.go [new file with mode: 0644]

diff --git a/test/fixedbugs/issue23489.go b/test/fixedbugs/issue23489.go
new file mode 100644 (file)
index 0000000..1e64af1
--- /dev/null
@@ -0,0 +1,20 @@
+// run
+
+// Copyright 2017 The Go Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style
+// license that can be found in the LICENSE file.
+
+// Caused gccgo to issue a spurious compilation error.
+
+package main
+
+type T struct{}
+
+func (*T) Foo() {}
+
+type P = *T
+
+func main() {
+       var p P
+       p.Foo()
+}