Sign in
go
/
tools
/
37590b385d564de6d3b0aedae2b5821b3f357d1d
/
.
/
internal
/
lsp
/
testdata
/
missingfunction
/
error_param.go.golden
blob: 2e12711817d8f6106dca6d598c175126b7f0e390 [
file
] [
log
] [
blame
]
--
suggestedfix_error_param_5_2
--
package
missingfunction
func errorParam
()
{
var
err error
undefinedErrorParam
(
err
)
//@suggestedfix("undefinedErrorParam", "quickfix")
}
func undefinedErrorParam
(
err error
)
{
panic
(
"unimplemented"
)
}