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 / E.template
1 package template
2
3 import (
4         "fmt"
5         "log"
6         "os"
7 )
8
9 // Replace call to void function by call to non-void function.
10
11 func before(x interface{}) { log.Fatal(x) }
12 func after(x interface{})  { fmt.Fprintf(os.Stderr, "warning: %v", x) }