Sign in
go
/
go.git
/
refs/heads/master
/
.
/
src
/
go
/
doc
/
testdata
/
examples
/
shadow_predeclared.golden
blob: 65598bed62d50035543a30e2f7be18c9a3c54373 [
file
] [
log
] [
blame
] [
edit
]
--
.
Play
--
package
main
import
(
"fmt"
"example.com/error"
)
func
Print
(
s
string
)
{
fmt
.
Println
(
s
)
}
func main
()
{
Print
(
error
.
Hello
)
}