From: Ian Lance Taylor Date: Wed, 21 Aug 2019 00:11:43 +0000 (-0700) Subject: test: add test that failed with gccgo X-Git-Tag: go1.14beta1~1301 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=4757518737c8866db012c6ca9ebe04597f12f5df;p=gostls13.git test: add test that failed with gccgo Updates #33739 Change-Id: Ib7ce4bc51972fe49998f37f6e27baa6a2a036d5e Reviewed-on: https://go-review.googlesource.com/c/go/+/191001 Reviewed-by: Cherry Zhang Run-TryBot: Cherry Zhang TryBot-Result: Gobot Gobot --- diff --git a/test/fixedbugs/issue33739.dir/a.go b/test/fixedbugs/issue33739.dir/a.go new file mode 100644 index 0000000000..7eb5b927c4 --- /dev/null +++ b/test/fixedbugs/issue33739.dir/a.go @@ -0,0 +1,11 @@ +// Copyright 2019 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. + +package a + +func F() func() { + return f +} + +func f() {} diff --git a/test/fixedbugs/issue33739.dir/b.go b/test/fixedbugs/issue33739.dir/b.go new file mode 100644 index 0000000000..caca1ec686 --- /dev/null +++ b/test/fixedbugs/issue33739.dir/b.go @@ -0,0 +1,11 @@ +// Copyright 2019 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. + +package main + +import "a" + +func main() { + a.F()() +} diff --git a/test/fixedbugs/issue33739.go b/test/fixedbugs/issue33739.go new file mode 100644 index 0000000000..b770782286 --- /dev/null +++ b/test/fixedbugs/issue33739.go @@ -0,0 +1,9 @@ +// rundir + +// Copyright 2019 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. + +// Issue 33739: gccgo undefined symbol with cross-package inlining + +package ignored