gopls/internal/lsp: add testing support for the new zero builtin

Update tests that fail at CL 520336. For now, disable the test to avoid
failures while the corresponding change is being merged in the Go repo.
It is easier to skip at 1.21 as well, due to the summary file.

For golang/go#61372

Change-Id: I454a1b05947079a7ff908efc07599fb36f841912
Reviewed-on: https://go-review.googlesource.com/c/tools/+/521119
Run-TryBot: Robert Findley <rfindley@google.com>
TryBot-Result: Gopher Robot <gobot@golang.org>
gopls-CI: kokoro <noreply+kokoro@google.com>
Reviewed-by: Robert Griesemer <gri@google.com>
diff --git a/gopls/internal/lsp/testdata/builtins/builtin_go121.go b/gopls/internal/lsp/testdata/builtins/builtin_go121.go
index a52d168..14f59de 100644
--- a/gopls/internal/lsp/testdata/builtins/builtin_go121.go
+++ b/gopls/internal/lsp/testdata/builtins/builtin_go121.go
@@ -1,5 +1,5 @@
-//go:build go1.21
-// +build go1.21
+//go:build go1.21 && !go1.22 && ignore
+// +build go1.21,!go1.22,ignore
 
 package builtins
 
diff --git a/gopls/internal/lsp/testdata/builtins/builtin_go122.go b/gopls/internal/lsp/testdata/builtins/builtin_go122.go
new file mode 100644
index 0000000..f799c12
--- /dev/null
+++ b/gopls/internal/lsp/testdata/builtins/builtin_go122.go
@@ -0,0 +1,8 @@
+//go:build go1.22 && ignore
+// +build go1.22,ignore
+
+package builtins
+
+func _() {
+	//@complete("", any, append, bool, byte, cap, clear, close, comparable, complex, complex128, complex64, copy, delete, error, _false, float32, float64, imag, int, int16, int32, int64, int8, len, make, max, min, new, panic, print, println, real, recover, rune, string, _true, uint, uint16, uint32, uint64, uint8, uintptr, zero, _nil)
+}
diff --git a/gopls/internal/lsp/testdata/builtins/builtins.go b/gopls/internal/lsp/testdata/builtins/builtins.go
index 2e3361c..a645036 100644
--- a/gopls/internal/lsp/testdata/builtins/builtins.go
+++ b/gopls/internal/lsp/testdata/builtins/builtins.go
@@ -47,3 +47,4 @@
 /* uint64 */ //@item(uint64, "uint64", "", "type")
 /* uint8 */ //@item(uint8, "uint8", "", "type")
 /* uintptr */ //@item(uintptr, "uintptr", "", "type")
+/* zero */ //@item(zero, "zero", "", "var")
diff --git a/gopls/internal/lsp/testdata/summary_go1.21.txt.golden b/gopls/internal/lsp/testdata/summary_go1.21.txt.golden
index 8d6a32b..619c25b 100644
--- a/gopls/internal/lsp/testdata/summary_go1.21.txt.golden
+++ b/gopls/internal/lsp/testdata/summary_go1.21.txt.golden
@@ -1,7 +1,7 @@
 -- summary --
 CallHierarchyCount = 2
 CodeLensCount = 5
-CompletionsCount = 264
+CompletionsCount = 263
 CompletionSnippetCount = 115
 UnimportedCompletionsCount = 5
 DeepCompletionsCount = 5
diff --git a/gopls/internal/lsp/tests/util_go122.go b/gopls/internal/lsp/tests/util_go122.go
new file mode 100644
index 0000000..90ae029
--- /dev/null
+++ b/gopls/internal/lsp/tests/util_go122.go
@@ -0,0 +1,12 @@
+// Copyright 2023 The Go Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style
+// license that can be found in the LICENSE file.
+
+//go:build go1.22
+// +build go1.22
+
+package tests
+
+func init() {
+	builtins["zero"] = true
+}