DEBSOURCES
Skip Quicknav
sources / golang-1.17 / 1.17.5-1 / misc / cgo / testshared / testdata / implicitcmd / implicitcmd.go
12345678910
package main import ( "testshared/explicit" "testshared/implicit" ) func main() { println(implicit.I() + explicit.E()) }