aboutsummaryrefslogtreecommitdiff
path: root/misc/cgo/test/issue29563/weak.go
diff options
context:
space:
mode:
Diffstat (limited to 'misc/cgo/test/issue29563/weak.go')
-rw-r--r--misc/cgo/test/issue29563/weak.go13
1 files changed, 0 insertions, 13 deletions
diff --git a/misc/cgo/test/issue29563/weak.go b/misc/cgo/test/issue29563/weak.go
deleted file mode 100644
index 21cf635cca..0000000000
--- a/misc/cgo/test/issue29563/weak.go
+++ /dev/null
@@ -1,13 +0,0 @@
-// Copyright 2019 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 issue29563
-
-//int foo1();
-//int foo2();
-import "C"
-
-func Bar() int {
- return int(C.foo1()) + int(C.foo2())
-}