1
0
mirror of https://github.com/golang/go synced 2024-11-07 12:46:16 -07:00
go/misc/cgo/testshared/testdata/implicitcmd/implicitcmd.go

11 lines
126 B
Go
Raw Normal View History

package main
import (
"testshared/explicit"
"testshared/implicit"
)
func main() {
println(implicit.I() + explicit.E())
}