aboutsummaryrefslogtreecommitdiff
path: root/misc/cgo/testplugin/testdata/issue24351/plugin.go
diff options
context:
space:
mode:
Diffstat (limited to 'misc/cgo/testplugin/testdata/issue24351/plugin.go')
-rw-r--r--misc/cgo/testplugin/testdata/issue24351/plugin.go14
1 files changed, 0 insertions, 14 deletions
diff --git a/misc/cgo/testplugin/testdata/issue24351/plugin.go b/misc/cgo/testplugin/testdata/issue24351/plugin.go
deleted file mode 100644
index db17e0a609..0000000000
--- a/misc/cgo/testplugin/testdata/issue24351/plugin.go
+++ /dev/null
@@ -1,14 +0,0 @@
-// Copyright 2018 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
-
-import "fmt"
-
-func B(c chan bool) {
- go func() {
- fmt.Println(1.5)
- c <- true
- }()
-}