aboutsummaryrefslogtreecommitdiff
path: root/misc/cgo/test/issue8756.go
diff options
context:
space:
mode:
Diffstat (limited to 'misc/cgo/test/issue8756.go')
-rw-r--r--misc/cgo/test/issue8756.go17
1 files changed, 0 insertions, 17 deletions
diff --git a/misc/cgo/test/issue8756.go b/misc/cgo/test/issue8756.go
deleted file mode 100644
index 08099dc153..0000000000
--- a/misc/cgo/test/issue8756.go
+++ /dev/null
@@ -1,17 +0,0 @@
-package cgotest
-
-/*
-#cgo LDFLAGS: -lm
-#include <math.h>
-*/
-import "C"
-import (
- "testing"
-
- "misc/cgo/test/issue8756"
-)
-
-func test8756(t *testing.T) {
- issue8756.Pow()
- C.pow(1, 2)
-}