blob: 26142d0a8935c3ebcc42e2901c3f87de9555e7b3 [file] [log] [blame]
package stub
import (
"golang.org/x/tools/internal/lsp/stub/other"
)
// This file tests that if an interface
// method references an import from its own package
// that the concrete type does not yet import, and that import happens
// to be renamed, then we prefer the renaming of the interface.
var _ other.Interface = &otherInterfaceImpl{} //@suggestedfix("&otherInterfaceImpl", "refactor.rewrite", "")
type otherInterfaceImpl struct{}