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