go/internal/lsp/testdata/missingfunction/error_param.go.golden

13 lines
240 B
Plaintext

-- suggestedfix_error_param_5_2 --
package missingfunction
func errorParam() {
var err error
undefinedErrorParam(err) //@suggestedfix("undefinedErrorParam", "quickfix")
}
func undefinedErrorParam(err error) {
panic("unimplemented")
}