aboutsummaryrefslogtreecommitdiff
path: root/internal/lsp/testdata/stub/stub_renamed_import_iface.go.golden
blob: 9ba2cb440e89993f56304672bf7060cc3b02e5d3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
-- suggestedfix_stub_renamed_import_iface_11_25 --
package stub

import (
	"bytes"
	renamed_context "context"
	"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{}

// Get implements other.Interface
func (*otherInterfaceImpl) Get(renamed_context.Context) *bytes.Buffer {
	panic("unimplemented")
}