Sign in
go
/
tools
/
b2552ef554f216cb7c6b475538301c39fb1571e1
/
.
/
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
}