From 3d667671ad767d66bf792c5a8d623cb829f6366a Mon Sep 17 00:00:00 2001 From: korzhao Date: Wed, 25 Aug 2021 16:01:49 +0800 Subject: cmd/compile: fix function contains no TParam in generic function Fixes #47948 Change-Id: I446a9548265d195ae4d88aff6b1361474d1b6214 Reviewed-on: https://go-review.googlesource.com/c/go/+/344910 Trust: Alexander Rakoczy Trust: Dan Scales Run-TryBot: Alexander Rakoczy TryBot-Result: Go Bot Reviewed-by: Dan Scales --- test/typeparam/issue47948.go | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 test/typeparam/issue47948.go (limited to 'test') diff --git a/test/typeparam/issue47948.go b/test/typeparam/issue47948.go new file mode 100644 index 0000000000..8e5df81f6d --- /dev/null +++ b/test/typeparam/issue47948.go @@ -0,0 +1,18 @@ +// compile -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 fun func() + +func F[T any]() { + _ = fun(func() { + + }) +} +func main() { + F[int]() +} -- cgit v1.2.3-54-g00ecf