Sign in
go
/
tools
/
c924e603b56b35e41529f44881503e25c6497e4d
/
.
/
gopls
/
internal
/
lsp
/
testdata
/
stub
/
stub_function_return.go
blob: 1a9ad49420a11ec1c3712f8d342c775e583964d3 [
file
]
package stub
import (
"io"
)
func newCloser() io.Closer {
return closer{}
//@suggestedfix("c", "quickfix", "")
}
type closer struct{}