From d1f679a6aff2e96364abb7f371f9da24a40e7a5c Mon Sep 17 00:00:00 2001 From: Ian Lance Taylor Date: Thu, 25 Jan 2018 10:33:00 -0800 Subject: [PATCH] test: add test case for incorrect gccgo compilation error Updates #23489 Change-Id: Ie846ccfe4c4d9295857f5da6863ac8f2ac0f2f6a Reviewed-on: https://go-review.googlesource.com/89935 Run-TryBot: Ian Lance Taylor TryBot-Result: Gobot Gobot Reviewed-by: Brad Fitzpatrick --- test/fixedbugs/issue23489.go | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 test/fixedbugs/issue23489.go diff --git a/test/fixedbugs/issue23489.go b/test/fixedbugs/issue23489.go new file mode 100644 index 00000000000..1e64af1903a --- /dev/null +++ b/test/fixedbugs/issue23489.go @@ -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() +}