mirror of
https://github.com/golang/go.git
synced 2025-12-08 06:10:04 +00:00
9 lines
69 B
Go
9 lines
69 B
Go
|
|
package issue8828
|
||
|
|
|
||
|
|
//void foo();
|
||
|
|
import "C"
|
||
|
|
|
||
|
|
func Bar() {
|
||
|
|
C.foo()
|
||
|
|
}
|