go/internal/lsp/testdata/missingfunction/tuple.go.golden

16 lines
259 B
Plaintext

-- suggestedfix_tuple_4_2 --
package missingfunction
func tuple() {
undefinedTuple(b()) //@suggestedfix("undefinedTuple", "quickfix", "")
}
func undefinedTuple(s string, err error) {
panic("unimplemented")
}
func b() (string, error) {
return "", nil
}