some deletions
[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 / a.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/a.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/a.go
deleted file mode 100644 (file)
index ded6c64..0000000
+++ /dev/null
@@ -1,27 +0,0 @@
-package initial
-
-import "fmt" // this comment should not be visible
-
-// init functions are not renamed
-func init() { foo() }
-
-// Type S.
-type S struct {
-       t
-       u int
-} /* multi-line
-comment
-*/
-
-// non-associated comment
-
-/*
-       non-associated comment2
-*/
-
-// Function bar.
-func bar(s *S) {
-       fmt.Println(s.t, s.u) // comment inside function
-}
-
-// file-end comment