mirror of
https://github.com/golang/go
synced 2024-11-05 15:36:09 -07:00
9 lines
69 B
Go
9 lines
69 B
Go
|
package issue8828
|
||
|
|
||
|
//void foo();
|
||
|
import "C"
|
||
|
|
||
|
func Bar() {
|
||
|
C.foo()
|
||
|
}
|