936615752a
Copy all the misc/cgo files from the gc toolchain into libgo/misc. These will be used for testing purposes by later changes to the gotools directory. Reviewed-on: https://go-review.googlesource.com/46721 From-SVN: r249674
18 lines
171 B
Go
18 lines
171 B
Go
package cgotest
|
|
|
|
/*
|
|
#cgo LDFLAGS: -lm
|
|
#include <math.h>
|
|
*/
|
|
import "C"
|
|
import (
|
|
"testing"
|
|
|
|
"./issue8756"
|
|
)
|
|
|
|
func test8756(t *testing.T) {
|
|
issue8756.Pow()
|
|
C.pow(1, 2)
|
|
}
|