mirror of
https://github.com/golang/go.git
synced 2025-05-07 00:23:03 +00:00
15 lines
118 B
Go
15 lines
118 B
Go
package main
|
|
|
|
/*
|
|
#cgo LDFLAGS: -c
|
|
|
|
void test() {
|
|
xxx; // This is line 7.
|
|
}
|
|
*/
|
|
import "C"
|
|
|
|
func main() {
|
|
C.test()
|
|
}
|