.gitignore added
[dotfiles/.git] / .config / coc / extensions / coc-go-data / tools / pkg / mod / golang.org / x / tools@v0.1.0 / internal / lsp / testdata / builtins / constants.go
diff --git a/.config/coc/extensions/coc-go-data/tools/pkg/mod/golang.org/x/tools@v0.1.0/internal/lsp/testdata/builtins/constants.go b/.config/coc/extensions/coc-go-data/tools/pkg/mod/golang.org/x/tools@v0.1.0/internal/lsp/testdata/builtins/constants.go
new file mode 100644 (file)
index 0000000..7ad07bd
--- /dev/null
@@ -0,0 +1,19 @@
+package builtins
+
+func _() {
+       const (
+               foo = iota //@complete(" //", iota)
+       )
+
+       iota //@complete(" //")
+
+       var iota int //@item(iotaVar, "iota", "int", "var")
+
+       iota //@complete(" //", iotaVar)
+}
+
+func _() {
+       var twoRedUpEnd bool //@item(TRUEVar, "twoRedUpEnd", "bool", "var")
+
+       var _ bool = true //@rank(" //", _true, TRUEVar)
+}