Sign in
go
/
tools
/
48a2cc8a0dedac636c66bb5f095ad46073e0a288
/
.
/
internal
/
lsp
/
testdata
/
missingfunction
/
tuple.go.golden
blob: 1e12bb70860ce6f9f7560f1554bcab46a7dabb5d [
file
] [
log
] [
blame
]
--
suggestedfix_tuple_4_2
--
package
missingfunction
func tuple
()
{
undefinedTuple
(
b
())
//@suggestedfix("undefinedTuple", "quickfix")
}
func undefinedTuple
(
s
string
,
err error
)
{
panic
(
"unimplemented"
)
}
func b
()
(
string
,
error
)
{
return
""
,
nil
}