github.com/roboticscm/goman@v0.0.0-20210203095141-87c07b4a0a55/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  }