some deletions
[dotfiles/.git] / .config / coc / extensions / coc-go-data / tools / pkg / mod / golang.org / x / tools@v0.0.0-20201105173854-bc9fc8d8c4bc / go / internal / gccgoimporter / testdata / issue31540.go
diff --git a/.config/coc/extensions/coc-go-data/tools/pkg/mod/golang.org/x/tools@v0.0.0-20201105173854-bc9fc8d8c4bc/go/internal/gccgoimporter/testdata/issue31540.go b/.config/coc/extensions/coc-go-data/tools/pkg/mod/golang.org/x/tools@v0.0.0-20201105173854-bc9fc8d8c4bc/go/internal/gccgoimporter/testdata/issue31540.go
deleted file mode 100644 (file)
index 2c6799e..0000000
+++ /dev/null
@@ -1,26 +0,0 @@
-// Copyright 2019 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 issue31540
-
-type Y struct {
-       q int
-}
-
-type Z map[int]int
-
-type X = map[Y]Z
-
-type A1 = X
-
-type A2 = A1
-
-type S struct {
-       b int
-       A2
-}
-
-func Hallo() S {
-       return S{}
-}