Sign in
go
/
tools
/
665c9227d976a1d04326dabe85ccc428fc8218bc
/
.
/
gopls
/
internal
/
lsp
/
testdata
/
missingfunction
/
error_param.go.golden
blob: de78646a5f1c917b678a82163eed3c4cb2060351 [
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"
)
}