github.com/rakyll/go@v0.0.0-20170216000551-64c02460d703/misc/cgo/test/issue8828/trivial.go (about)

     1  package issue8828
     2  
     3  //void foo();
     4  import "C"
     5  
     6  func Bar() {
     7  	C.foo()
     8  }