1
0
mirror of https://github.com/golang/go synced 2024-10-02 00:18:32 -06:00
go/refactor/eg/testdata/A2.go

13 lines
208 B
Go
Raw Normal View History

// +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", "")
}