From 280e6402240e4e9c40853600186bfffd56dec954 Mon Sep 17 00:00:00 2001 From: Ian Lance Taylor Date: Thu, 5 May 2022 17:19:07 -0700 Subject: [PATCH] test: add test that crashed gofrontend For #52535 Change-Id: I6798a8379163497ebebcdadf836b8569735c282b Reviewed-on: https://go-review.googlesource.com/c/go/+/404496 Run-TryBot: Ian Lance Taylor Reviewed-by: Cherry Mui Reviewed-by: Than McIntosh TryBot-Result: Gopher Robot Auto-Submit: Ian Lance Taylor --- test/fixedbugs/issue52535.go | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 test/fixedbugs/issue52535.go diff --git a/test/fixedbugs/issue52535.go b/test/fixedbugs/issue52535.go new file mode 100644 index 0000000000..6cb971f5bc --- /dev/null +++ b/test/fixedbugs/issue52535.go @@ -0,0 +1,16 @@ +// compile + +// 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. + +// gofrontend crashed converting unnamed bool type to any. + +package p + +func F() { + m := make(map[int]int) + var ok any + _, ok = m[0] + _ = ok +} -- 2.50.0