aboutsummaryrefslogtreecommitdiff
path: root/gopls/internal/lsp/testdata/stub/stub_add_selector.go.golden
blob: 8f08ca1efe2f057b832e5eb82b36b6f9cb374fd1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
-- suggestedfix_stub_add_selector_10_23 --
package stub

import "io"

// This file tests that if an interface
// method references a type from its own package
// then our implementation must add the import/package selector
// in the concrete method if the concrete type is outside of the interface
// package
var _ io.ReaderFrom = &readerFrom{} //@suggestedfix("&readerFrom", "refactor.rewrite", "")

type readerFrom struct{}

// ReadFrom implements io.ReaderFrom
func (*readerFrom) ReadFrom(r io.Reader) (n int64, err error) {
	panic("unimplemented")
}