Giant blob of minor changes
[dotfiles/.git] / .config / coc / extensions / coc-go-data / tools / pkg / mod / golang.org / x / tools@v0.0.0-20201105173854-bc9fc8d8c4bc / internal / lsp / testdata / danglingstmt / dangling_if.go
1 package danglingstmt
2
3 func _() {
4         if foo //@rank(" //", danglingFoo)
5 }
6
7 func foo() bool { //@item(danglingFoo, "foo", "func() bool", "func")
8         return true
9 }