mirror of
https://github.com/golang/go
synced 2024-11-05 17:46:16 -07:00
bfcffc697d
See refactor/eg/eg.go for details. LGTM=crawshaw R=crawshaw, gri, kamil.kisiel, josharian CC=golang-codereviews https://golang.org/cl/81010043
13 lines
208 B
Go
13 lines
208 B
Go
// +build ignore
|
|
|
|
package A2
|
|
|
|
// This refactoring causes addition of "errors" import.
|
|
// TODO(adonovan): fix: it should also remove "fmt".
|
|
|
|
import myfmt "fmt"
|
|
|
|
func example(n int) {
|
|
myfmt.Errorf("%s", "")
|
|
}
|