some deletions
[dotfiles/.git] / .config / coc / extensions / coc-go-data / tools / pkg / mod / golang.org / x / tools@v0.0.0-20201105173854-bc9fc8d8c4bc / cmd / stringer / testdata / num.go
diff --git a/.config/coc/extensions/coc-go-data/tools/pkg/mod/golang.org/x/tools@v0.0.0-20201105173854-bc9fc8d8c4bc/cmd/stringer/testdata/num.go b/.config/coc/extensions/coc-go-data/tools/pkg/mod/golang.org/x/tools@v0.0.0-20201105173854-bc9fc8d8c4bc/cmd/stringer/testdata/num.go
deleted file mode 100644 (file)
index 0d5ab10..0000000
+++ /dev/null
@@ -1,35 +0,0 @@
-// Copyright 2014 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.
-
-// Signed integers spanning zero.
-
-package main
-
-import "fmt"
-
-type Num int
-
-const (
-       m_2 Num = -2 + iota
-       m_1
-       m0
-       m1
-       m2
-)
-
-func main() {
-       ck(-3, "Num(-3)")
-       ck(m_2, "m_2")
-       ck(m_1, "m_1")
-       ck(m0, "m0")
-       ck(m1, "m1")
-       ck(m2, "m2")
-       ck(3, "Num(3)")
-}
-
-func ck(num Num, str string) {
-       if fmt.Sprint(num) != str {
-               panic("num.go: " + str)
-       }
-}