Sign in
go
/
go
/
ef20f76b8bc4e082d5f81fd818890d707751475b
/
.
/
misc
/
cgo
/
test
/
testdata
/
issue8756.go
blob: 406c64c0f39808ce710aed4b6b2aadd30754e846 [
file
] [
log
] [
blame
]
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)
}