1
0
mirror of https://github.com/golang/go synced 2024-10-05 10:31:22 -06:00
go/misc/cgo/errors/err1.go
2013-09-03 21:15:15 -07:00

15 lines
118 B
Go

package main
/*
#cgo LDFLAGS: -c
void test() {
xxx; // This is line 7.
}
*/
import "C"
func main() {
C.test()
}