some deletions
[dotfiles/.git] / .config / coc / extensions / coc-go-data / tools / pkg / mod / golang.org / x / tools@v0.0.0-20201028153306-37f0764111ff / internal / lsp / analysis / fillstruct / testdata / src / a / a.go
diff --git a/.config/coc/extensions/coc-go-data/tools/pkg/mod/golang.org/x/tools@v0.0.0-20201028153306-37f0764111ff/internal/lsp/analysis/fillstruct/testdata/src/a/a.go b/.config/coc/extensions/coc-go-data/tools/pkg/mod/golang.org/x/tools@v0.0.0-20201028153306-37f0764111ff/internal/lsp/analysis/fillstruct/testdata/src/a/a.go
deleted file mode 100644 (file)
index b5df1de..0000000
+++ /dev/null
@@ -1,106 +0,0 @@
-// Copyright 2020 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package fillstruct
-
-import (
-       data "b"
-       "go/ast"
-       "go/token"
-)
-
-type emptyStruct struct{}
-
-var _ = emptyStruct{}
-
-type basicStruct struct {
-       foo int
-}
-
-var _ = basicStruct{} // want ""
-
-type twoArgStruct struct {
-       foo int
-       bar string
-}
-
-var _ = twoArgStruct{} // want ""
-
-var _ = twoArgStruct{
-       bar: "bar",
-}
-
-type nestedStruct struct {
-       bar   string
-       basic basicStruct
-}
-
-var _ = nestedStruct{} // want ""
-
-var _ = data.B{} // want ""
-
-type typedStruct struct {
-       m  map[string]int
-       s  []int
-       c  chan int
-       c1 <-chan int
-       a  [2]string
-}
-
-var _ = typedStruct{} // want ""
-
-type funStruct struct {
-       fn func(i int) int
-}
-
-var _ = funStruct{} // want ""
-
-type funStructCompex struct {
-       fn func(i int, s string) (string, int)
-}
-
-var _ = funStructCompex{} // want ""
-
-type funStructEmpty struct {
-       fn func()
-}
-
-var _ = funStructEmpty{} // want ""
-
-type Foo struct {
-       A int
-}
-
-type Bar struct {
-       X *Foo
-       Y *Foo
-}
-
-var _ = Bar{} // want ""
-
-type importedStruct struct {
-       m  map[*ast.CompositeLit]ast.Field
-       s  []ast.BadExpr
-       a  [3]token.Token
-       c  chan ast.EmptyStmt
-       fn func(ast_decl ast.DeclStmt) ast.Ellipsis
-       st ast.CompositeLit
-}
-
-var _ = importedStruct{} // want ""
-
-type pointerBuiltinStruct struct {
-       b *bool
-       s *string
-       i *int
-}
-
-var _ = pointerBuiltinStruct{} // want ""
-
-var _ = []ast.BasicLit{
-       {}, // want ""
-}
-
-var _ = []ast.BasicLit{{}, // want ""
-}