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

10 lines
157 B
Go

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