]> Cypherpunks.ru repositories - gostls13.git/blobdiff - misc/cgo/test/issue8756/issue8756.go
misc/cgo: move registerCgoTests tests to cmd/cgo/internal
[gostls13.git] / misc / cgo / test / issue8756 / issue8756.go
diff --git a/misc/cgo/test/issue8756/issue8756.go b/misc/cgo/test/issue8756/issue8756.go
deleted file mode 100644 (file)
index 5f6b777..0000000
+++ /dev/null
@@ -1,11 +0,0 @@
-package issue8756
-
-/*
-#cgo LDFLAGS: -lm
-#include <math.h>
-*/
-import "C"
-
-func Pow() {
-       C.pow(1, 2)
-}