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