From 4757518737c8866db012c6ca9ebe04597f12f5df Mon Sep 17 00:00:00 2001 From: Ian Lance Taylor Date: Tue, 20 Aug 2019 17:11:43 -0700 Subject: [PATCH] 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 --- test/fixedbugs/issue33739.dir/a.go | 11 +++++++++++ test/fixedbugs/issue33739.dir/b.go | 11 +++++++++++ test/fixedbugs/issue33739.go | 9 +++++++++ 3 files changed, 31 insertions(+) create mode 100644 test/fixedbugs/issue33739.dir/a.go create mode 100644 test/fixedbugs/issue33739.dir/b.go create mode 100644 test/fixedbugs/issue33739.go 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 -- 2.50.0