mirror of
https://github.com/golang/go
synced 2024-11-08 11:46:31 -07:00
10 lines
91 B
Go
10 lines
91 B
Go
|
package explicit
|
||
|
|
||
|
import (
|
||
|
"testshared/implicit"
|
||
|
)
|
||
|
|
||
|
func E() int {
|
||
|
return implicit.I()
|
||
|
}
|