some deletions
[dotfiles/.git] / .config / coc / extensions / coc-go-data / tools / pkg / mod / golang.org / x / tools@v0.0.0-20201105173854-bc9fc8d8c4bc / internal / lsp / testdata / semantic / a.go
diff --git a/.config/coc/extensions/coc-go-data/tools/pkg/mod/golang.org/x/tools@v0.0.0-20201105173854-bc9fc8d8c4bc/internal/lsp/testdata/semantic/a.go b/.config/coc/extensions/coc-go-data/tools/pkg/mod/golang.org/x/tools@v0.0.0-20201105173854-bc9fc8d8c4bc/internal/lsp/testdata/semantic/a.go
deleted file mode 100644 (file)
index a8c7d99..0000000
+++ /dev/null
@@ -1,78 +0,0 @@
-package semantictokens
-
-import (
-       _ "encoding/utf8"
-       utf "encoding/utf8"
-       "fmt" //@ semantic("fmt")
-       . "fmt"
-       "unicode/utf8"
-)
-
-var (
-       a           = fmt.Print
-       b  []string = []string{"foo"}
-       c1 chan int
-       c2 <-chan int
-       c3 = make([]chan<- int)
-       b  = A{X: 23}
-       m  map[bool][3]*float64
-)
-
-const (
-       xx F = iota
-       yy   = xx + 3
-       zz   = ""
-       ww   = "not " + zz
-)
-
-type A struct {
-       X int `foof`
-}
-type B interface {
-       A
-       sad(int) bool
-}
-
-type F int
-
-func (a *A) f() bool {
-       var z string
-       x := "foo"
-       a(x)
-       y := "bar" + x
-       switch z {
-       case "xx":
-       default:
-       }
-       select {
-       case z := <-c3[0]:
-       default:
-       }
-       for k, v := range m {
-               return (!k) && v[0] == nil
-       }
-       c2 <- A.X
-       w := b[4:]
-       j := len(x)
-       j--
-       return true
-}
-
-func g(vv ...interface{}) {
-       ff := func() {}
-       defer ff()
-       go utf.RuneCount("")
-       go utf8.RuneCount(vv.(string))
-       if true {
-       } else {
-       }
-Never:
-       for i := 0; i < 10; {
-               break Never
-       }
-       _, ok := vv[0].(A)
-       if !ok {
-               switch x := vv[0].(type) {
-               }
-       }
-}