go/internal/lsp/testdata/stub/stub_pointer.go

10 lines
161 B
Go

package stub
import "io"
func getReaderFrom() io.ReaderFrom {
return &pointerImpl{} //@suggestedfix("&", "refactor.rewrite", "")
}
type pointerImpl struct{}