blob: 78094c6b51a0b53878826cc8844129ad2f6f6f3e [file] [log] [blame]
package main
/*
#cgo LDFLAGS: -c
void test() {
xxx; // This is line 7.
}
*/
import "C"
func main() {
C.test()
}