1
0
mirror of https://github.com/golang/go synced 2024-09-30 18:18:32 -06:00
go/refactor/eg/testdata/A2.golden
Alan Donovan bfcffc697d go.tools/refactor/eg: an example-based refactoring tool.
See refactor/eg/eg.go for details.

LGTM=crawshaw
R=crawshaw, gri, kamil.kisiel, josharian
CC=golang-codereviews
https://golang.org/cl/81010043
2014-04-02 12:24:55 -04:00

16 lines
215 B
Plaintext

// +build ignore
package A2
// This refactoring causes addition of "errors" import.
// TODO(adonovan): fix: it should also remove "fmt".
import (
myfmt "fmt"
"errors"
)
func example(n int) {
errors.New("")
}