]> Cypherpunks.ru repositories - gostls13.git/blobdiff - misc/cgo/test/issue8756.go
misc/cgo: move registerCgoTests tests to cmd/cgo/internal
[gostls13.git] / misc / cgo / test / issue8756.go
diff --git a/misc/cgo/test/issue8756.go b/misc/cgo/test/issue8756.go
deleted file mode 100644 (file)
index 08099dc..0000000
+++ /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)
-}