From: Cuong Manh Le Date: Fri, 13 Sep 2024 15:30:30 +0000 (+0700) Subject: test: add test for issue 24755 X-Git-Tag: go1.24rc1~900 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=f117d1c9b5951ab2456c1e512ac0423fcf3d7ada;p=gostls13.git test: add test for issue 24755 Fixes #24755 Change-Id: I00b276c5c2acb227d42a069d1af6027e4b499d31 Reviewed-on: https://go-review.googlesource.com/c/go/+/613115 Auto-Submit: Keith Randall LUCI-TryBot-Result: Go LUCI Reviewed-by: Keith Randall Reviewed-by: Tim King Reviewed-by: Keith Randall Auto-Submit: Cuong Manh Le --- diff --git a/test/fixedbugs/issue24755.go b/test/fixedbugs/issue24755.go new file mode 100644 index 0000000000..705b15fbdc --- /dev/null +++ b/test/fixedbugs/issue24755.go @@ -0,0 +1,19 @@ +// errorcheck + +// Copyright 2024 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 p + +type I interface { + F() +} + +type T struct { +} + +const _ = I((*T)(nil)) // ERROR "is not constant" + +func (*T) F() { +}