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 / rename / b / b.go
1 package b
2
3 var c int //@rename("int", "uint")
4
5 func _() {
6         a := 1 //@rename("a", "error")
7         a = 2
8         _ = a
9 }
10
11 var (
12         // Hello there.
13         // Foo does the thing.
14         Foo int //@rename("Foo", "Bob")
15 )
16
17 /*
18 Hello description
19 */
20 func Hello() {} //@rename("Hello", "Goodbye")