go/misc/cgo/testshared/testdata/explicit/explicit.go

10 lines
91 B
Go
Raw Normal View History

package explicit
import (
"testshared/implicit"
)
func E() int {
return implicit.I()
}