Sign in
◑
Theme
go
/
tools
/
b5d65e025bccf79b02252db0c040e158f58fed40
/
.
/
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
}