aboutsummaryrefslogtreecommitdiff
path: root/internal/lsp/testdata/stub/stub_pointer.go
blob: 2b3681b8357cec53789e37fd3a810c8f343c8636 (plain)
1
2
3
4
5
6
7
8
9
package stub

import "io"

func getReaderFrom() io.ReaderFrom {
	return &pointerImpl{} //@suggestedfix("&", "refactor.rewrite")
}

type pointerImpl struct{}