aboutsummaryrefslogtreecommitdiff
path: root/gopls/internal/lsp/testdata/missingfunction/tuple.go
blob: 4059ced983a05459900952f59967f20acc4ac266 (plain)
1
2
3
4
5
6
7
8
9
package missingfunction

func tuple() {
	undefinedTuple(b()) //@suggestedfix("undefinedTuple", "quickfix", "")
}

func b() (string, error) {
	return "", nil
}