some deletions
[dotfiles/.git] / .config / coc / extensions / coc-go-data / tools / pkg / mod / golang.org / x / tools@v0.0.0-20201028153306-37f0764111ff / go / pointer / testdata / issue9002.go
diff --git a/.config/coc/extensions/coc-go-data/tools/pkg/mod/golang.org/x/tools@v0.0.0-20201028153306-37f0764111ff/go/pointer/testdata/issue9002.go b/.config/coc/extensions/coc-go-data/tools/pkg/mod/golang.org/x/tools@v0.0.0-20201028153306-37f0764111ff/go/pointer/testdata/issue9002.go
deleted file mode 100644 (file)
index b7c2c61..0000000
+++ /dev/null
@@ -1,17 +0,0 @@
-package main
-
-func main() {
-       // Regression test for golang issue 9002.
-       //
-       // The two-result "value,ok" receive operation generated a
-       // too-wide constraint loading (value int, ok bool), not bool,
-       // from the channel.
-       //
-       // This bug manifested itself in an out-of-bounds array access
-       // when the makechan object was the highest-numbered node, as in
-       // this program.
-       //
-       // In more realistic programs it silently resulted in bogus
-       // constraints.
-       _, _ = <-make(chan int)
-}