mirror of
https://github.com/golang/go
synced 2024-11-06 04:36:15 -07:00
343d113610
Fixes #8828. LGTM=rsc R=rsc CC=golang-codereviews https://golang.org/cl/154410043
9 lines
69 B
Go
9 lines
69 B
Go
package issue8828
|
|
|
|
//void foo();
|
|
import "C"
|
|
|
|
func Bar() {
|
|
C.foo()
|
|
}
|