some deletions
[dotfiles/.git] / .config / coc / extensions / coc-go-data / tools / pkg / mod / golang.org / x / tools@v0.0.0-20201028153306-37f0764111ff / cmd / callgraph / testdata / src / pkg / pkg.go
diff --git a/.config/coc/extensions/coc-go-data/tools/pkg/mod/golang.org/x/tools@v0.0.0-20201028153306-37f0764111ff/cmd/callgraph/testdata/src/pkg/pkg.go b/.config/coc/extensions/coc-go-data/tools/pkg/mod/golang.org/x/tools@v0.0.0-20201028153306-37f0764111ff/cmd/callgraph/testdata/src/pkg/pkg.go
deleted file mode 100644 (file)
index b81c97f..0000000
+++ /dev/null
@@ -1,25 +0,0 @@
-package main
-
-type I interface {
-       f()
-}
-
-type C int
-
-func (C) f() {}
-
-type D int
-
-func (D) f() {}
-
-func main() {
-       var i I = C(0)
-       i.f() // dynamic call
-
-       main2()
-}
-
-func main2() {
-       var i I = D(0)
-       i.f() // dynamic call
-}