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