From: korzhao Date: Fri, 20 Aug 2021 18:51:51 +0000 (+0800) Subject: test/typeparam: add a test case for issue46591 X-Git-Tag: go1.18beta1~1689 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=97d17dc023;p=gostls13.git test/typeparam: add a test case for issue46591 Fixes #46591 Change-Id: I4875092ecd7760b0cd487e793576ef7a9a569a0e Reviewed-on: https://go-review.googlesource.com/c/go/+/343970 Reviewed-by: Matthew Dempsky Reviewed-by: Robert Griesemer Trust: Matthew Dempsky Run-TryBot: Matthew Dempsky Run-TryBot: Robert Griesemer TryBot-Result: Go Bot --- diff --git a/test/typeparam/issue46591.go b/test/typeparam/issue46591.go new file mode 100644 index 0000000000..e7b9fa2b48 --- /dev/null +++ b/test/typeparam/issue46591.go @@ -0,0 +1,22 @@ +// run -gcflags=-G=3 + +// Copyright 2021 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 + +type T[_ any] struct{} + +var m = map[interface{}]int{ + T[struct{ int }]{}: 0, + T[struct { + int "x" + }]{}: 0, +} + +func main() { + if len(m) != 2 { + panic(len(m)) + } +}