Giant blob of minor changes
[dotfiles/.git] / .config / coc / extensions / coc-go-data / tools / pkg / mod / golang.org / x / tools@v0.0.0-20201105173854-bc9fc8d8c4bc / cmd / bundle / testdata / src / initial / b.go
diff --git a/.config/coc/extensions/coc-go-data/tools/pkg/mod/golang.org/x/tools@v0.0.0-20201105173854-bc9fc8d8c4bc/cmd/bundle/testdata/src/initial/b.go b/.config/coc/extensions/coc-go-data/tools/pkg/mod/golang.org/x/tools@v0.0.0-20201105173854-bc9fc8d8c4bc/cmd/bundle/testdata/src/initial/b.go
new file mode 100644 (file)
index 0000000..31d5cab
--- /dev/null
@@ -0,0 +1,23 @@
+// The package doc comment
+package initial
+
+import (
+       "fmt"
+
+       "domain.name/importdecl"
+)
+
+type t int // type1
+
+// const1
+const c = 1 // const2
+
+func foo() {
+       fmt.Println(importdecl.F())
+}
+
+// zinit
+const (
+       z1 = iota // z1
+       z2        // z2
+) // zend