Giant blob of minor changes
[dotfiles/.git] / .config / coc / extensions / coc-go-data / tools / pkg / mod / golang.org / x / tools@v0.0.0-20201028153306-37f0764111ff / internal / lsp / testdata / godef / broken / unclosedIf.go.in
1 package broken
2
3 import "fmt"
4
5 func unclosedIf() {
6         if false {
7                 var myUnclosedIf string              //@myUnclosedIf
8                 fmt.Printf("s = %v\n", myUnclosedIf) //@godef("my", myUnclosedIf)
9 }