xref: /netbsd-src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.go/global-local-var-shadow.go (revision 4ac76180e904e771b9d522c7e57296d371f06499)
1package main
2
3import "fmt"
4
5var st = "We shall"
6
7func main () {
8  fmt.Println ("Before assignment")
9  st := "Hello, world!" // this intentionally shadows the global "st"
10  fmt.Println (st) // set breakpoint 1 here
11}
12