some deletions
[dotfiles/.git] / .config / coc / extensions / coc-go-data / tools / pkg / mod / golang.org / x / tools@v0.0.0-20201028153306-37f0764111ff / internal / lsp / testdata / typeassert / type_assert.go
diff --git a/.config/coc/extensions/coc-go-data/tools/pkg/mod/golang.org/x/tools@v0.0.0-20201028153306-37f0764111ff/internal/lsp/testdata/typeassert/type_assert.go b/.config/coc/extensions/coc-go-data/tools/pkg/mod/golang.org/x/tools@v0.0.0-20201028153306-37f0764111ff/internal/lsp/testdata/typeassert/type_assert.go
deleted file mode 100644 (file)
index 0dfd3a1..0000000
+++ /dev/null
@@ -1,26 +0,0 @@
-package typeassert
-
-type abc interface { //@item(abcIntf, "abc", "interface{...}", "interface")
-       abc()
-}
-
-type abcImpl struct{} //@item(abcImpl, "abcImpl", "struct{...}", "struct")
-func (abcImpl) abc()
-
-type abcPtrImpl struct{} //@item(abcPtrImpl, "abcPtrImpl", "struct{...}", "struct")
-func (*abcPtrImpl) abc()
-
-type abcNotImpl struct{} //@item(abcNotImpl, "abcNotImpl", "struct{...}", "struct")
-
-func _() {
-       *abcPtrImpl //@item(abcPtrImplPtr, "*abcPtrImpl", "struct{...}", "struct")
-
-       var a abc
-       switch a.(type) {
-       case ab: //@complete(":", abcPtrImplPtr, abcImpl, abcIntf, abcNotImpl)
-       case *ab: //@complete(":", abcImpl, abcPtrImpl, abcIntf, abcNotImpl)
-       }
-
-       a.(ab)  //@complete(")", abcPtrImplPtr, abcImpl, abcIntf, abcNotImpl)
-       a.(*ab) //@complete(")", abcImpl, abcPtrImpl, abcIntf, abcNotImpl)
-}