From 1c6706c71b6b3f783a4f1ce78433a10aa302a9c8 Mon Sep 17 00:00:00 2001 From: Ian Lance Taylor Date: Tue, 17 May 2022 15:41:59 -0700 Subject: [PATCH] test: add test that caused a gofrontend crash For #51291 Change-Id: If47e4cbf899853ade5050852c3870b9500da4c63 Reviewed-on: https://go-review.googlesource.com/c/go/+/406916 Run-TryBot: Ian Lance Taylor Reviewed-by: Cherry Mui TryBot-Result: Gopher Robot Reviewed-by: Than McIntosh --- test/fixedbugs/issue51291.dir/a.go | 9 +++++++++ test/fixedbugs/issue51291.dir/b.go | 11 +++++++++++ test/fixedbugs/issue51291.go | 9 +++++++++ 3 files changed, 29 insertions(+) create mode 100644 test/fixedbugs/issue51291.dir/a.go create mode 100644 test/fixedbugs/issue51291.dir/b.go create mode 100644 test/fixedbugs/issue51291.go diff --git a/test/fixedbugs/issue51291.dir/a.go b/test/fixedbugs/issue51291.dir/a.go new file mode 100644 index 0000000000..21e2cd6adf --- /dev/null +++ b/test/fixedbugs/issue51291.dir/a.go @@ -0,0 +1,9 @@ +// Copyright 2022 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 + +type TypeA string + +const StrA TypeA = "s" diff --git a/test/fixedbugs/issue51291.dir/b.go b/test/fixedbugs/issue51291.dir/b.go new file mode 100644 index 0000000000..26b2c7872e --- /dev/null +++ b/test/fixedbugs/issue51291.dir/b.go @@ -0,0 +1,11 @@ +// Copyright 2022 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 b + +import "./a" + +type TypeB string + +const StrB TypeB = TypeB(a.StrA) diff --git a/test/fixedbugs/issue51291.go b/test/fixedbugs/issue51291.go new file mode 100644 index 0000000000..9e7d4be891 --- /dev/null +++ b/test/fixedbugs/issue51291.go @@ -0,0 +1,9 @@ +// compiledir + +// Copyright 2022 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 ignored + +// gofrontend crashed generating export data. -- 2.50.0