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 / A2.golden
1 // +build ignore
2
3 package A2
4
5 // This refactoring causes addition of "errors" import.
6 // TODO(adonovan): fix: it should also remove "fmt".
7
8 import (
9         "errors"
10         myfmt "fmt"
11 )
12
13 func example(n int) {
14         errors.New("")
15 }