blob: 91804c2c4302243e32e2d0fd91981cb69282a469 [file] [log] [blame]
package stub
import (
"golang.org/lsptests/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", "quickfix", "")
type otherInterfaceImpl struct{}