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