Sign in
go
/
tools
/
cd31eaad03d53a18fa4b5e25b94d0b65e7380349
/
.
/
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"
)
}