commit | f58ed4e64126b595efbde9df04e63c7ea2a4fbd6 | [log] [tgz] |
---|---|---|
author | Russ Cox <rsc@golang.org> | Thu Oct 13 16:58:04 2011 -0400 |
committer | Russ Cox <rsc@golang.org> | Thu Oct 13 16:58:04 2011 -0400 |
tree | 96948e47d2e0751de6c51e6d941ed8defaf70fc6 | |
parent | d65aaf24a6f7c4752aa5609f3f40433218483e72 [diff] [blame] |
gc: disallow close on receive-only channels Fixes #2353. Fixes #2246. R=golang-dev, r, gri CC=golang-dev https://golang.org/cl/5282042
diff --git a/test/chan/perm.go b/test/chan/perm.go index 038ff94..af05445 100644 --- a/test/chan/perm.go +++ b/test/chan/perm.go
@@ -48,4 +48,8 @@ case x := <-cs: // ERROR "receive" _ = x } + + close(c) + close(cs) + close(cr) // ERROR "receive" }