blob: 817f449e96c9929d42551fee580b489bedbaed52 [file] [log] [blame]
package cgotest
/*
#cgo !darwin LDFLAGS: -lm
#include <math.h>
*/
import "C"
import (
"testing"
"cmd/cgo/internal/test/issue8756"
)
func test8756(t *testing.T) {
issue8756.Pow()
C.pow(1, 2)
}