b6e3a6d7aec28d873511ed6e506708b434a81d47
[dotfiles/.git] / 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 }