diff options
| author | Cuong Manh Le <cuong.manhle.vn@gmail.com> | 2022-05-17 15:38:35 +0700 |
|---|---|---|
| committer | Gopher Robot <gobot@golang.org> | 2022-05-17 18:13:13 +0000 |
| commit | afd181cf0b69c3591d7e47ceca4fabf14434d77e (patch) | |
| tree | 97a99487ec3d682f9ecf7d20bb9d643d929135d0 /test/typeparam | |
| parent | cc4957a5f6eba946f359ed9646ec3e5083a259a9 (diff) | |
| download | go-afd181cf0b69c3591d7e47ceca4fabf14434d77e.tar.xz | |
test,misc: fix builders that do not support plugin
CL 406358 added test that use -buildmode=plugin. But plugin mode only
supports on some os/arch pairs, so this CL moving the test to
misc/cgo/testplugin directory instead.
Updates #52937
Change-Id: Iad049443c1f6539f6af1988bebd4dff56c6e1bf9
Reviewed-on: https://go-review.googlesource.com/c/go/+/406774
Reviewed-by: Michael Knyszek <mknyszek@google.com>
Run-TryBot: Cuong Manh Le <cuong.manhle.vn@gmail.com>
Reviewed-by: Cherry Mui <cherryyz@google.com>
Auto-Submit: Cuong Manh Le <cuong.manhle.vn@gmail.com>
TryBot-Result: Gopher Robot <gobot@golang.org>
Diffstat (limited to 'test/typeparam')
| -rw-r--r-- | test/typeparam/issue52937.go | 14 |
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) {} |
