Sign in
go
/
tools
/
d299b94661a0861681b42a923644618f8840a097
/
.
/
internal
/
lsp
/
testdata
/
missingfunction
/
tuple.go
blob: 1c4782c15dd9f8a6c5c4c9a0cbeea82f8fb458ec [
file
] [
log
] [
blame
]
package missingfunction
func tuple() {
undefinedTuple(b())
//@suggestedfix("undefinedTuple", "quickfix")
}
func b() (string, error) {
return "", nil
}