aboutsummaryrefslogtreecommitdiff
path: root/gopls/internal/lsp/testdata/stub/stub_renamed_import_iface.go
blob: 0f175868504f7cf2979109deb04ee26478778457 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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", "refactor.rewrite", "")

type otherInterfaceImpl struct{}