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