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 / refactor / eg / testdata / J.template
1 // +build ignore
2
3 package templates
4
5 import ()
6
7 func before(x int) int { return x + x + x }
8 func after(x int) int {
9         temp := x + x
10         return temp + x
11 }