]> Cypherpunks.ru repositories - gostls13.git/blob - misc/cgo/test/issue8756.go
08099dc1530985c91e08ec0689056059776eb0da
[gostls13.git] / misc / cgo / test / issue8756.go
1 package cgotest
2
3 /*
4 #cgo LDFLAGS: -lm
5 #include <math.h>
6 */
7 import "C"
8 import (
9         "testing"
10
11         "misc/cgo/test/issue8756"
12 )
13
14 func test8756(t *testing.T) {
15         issue8756.Pow()
16         C.pow(1, 2)
17 }