Text file src/go/doc/testdata/examples/shadow_predeclared.golden
1 -- .Play -- 2 package main 3 4 import ( 5 "fmt" 6 7 "example.com/error" 8 ) 9 10 func Print(s string) { 11 fmt.Println(s) 12 } 13 14 func main() { 15 Print(error.Hello) 16 } 17
1 -- .Play -- 2 package main 3 4 import ( 5 "fmt" 6 7 "example.com/error" 8 ) 9 10 func Print(s string) { 11 fmt.Println(s) 12 } 13 14 func main() { 15 Print(error.Hello) 16 } 17