aboutsummaryrefslogtreecommitdiff
path: root/test/typeparam
diff options
context:
space:
mode:
Diffstat (limited to 'test/typeparam')
-rw-r--r--test/typeparam/issue52937.go14
1 files changed, 0 insertions, 14 deletions
diff --git a/test/typeparam/issue52937.go b/test/typeparam/issue52937.go
deleted file mode 100644
index efcb69a2c1..0000000000
--- a/test/typeparam/issue52937.go
+++ /dev/null
@@ -1,14 +0,0 @@
-// build -buildmode=plugin
-
-//go:build !js
-// +build !js
-
-// 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 main
-
-func main() {}
-func F[T any]() {}
-func G[T any](T) {}