Source file src/cmd/cgo/internal/testshared/testdata/implicitcmd/implicitcmd.go
1 package main 2 3 import ( 4 "testshared/explicit" 5 "testshared/implicit" 6 ) 7 8 func main() { 9 println(implicit.I() + explicit.E()) 10 } 11
1 package main 2 3 import ( 4 "testshared/explicit" 5 "testshared/implicit" 6 ) 7 8 func main() { 9 println(implicit.I() + explicit.E()) 10 } 11