aboutsummaryrefslogtreecommitdiff
path: root/test/fixedbugs/issue9083.go
diff options
context:
space:
mode:
Diffstat (limited to 'test/fixedbugs/issue9083.go')
-rw-r--r--test/fixedbugs/issue9083.go1
1 files changed, 1 insertions, 0 deletions
diff --git a/test/fixedbugs/issue9083.go b/test/fixedbugs/issue9083.go
index 8fbd78be7a..d4762f802e 100644
--- a/test/fixedbugs/issue9083.go
+++ b/test/fixedbugs/issue9083.go
@@ -19,4 +19,5 @@ func main() {
x = make(chan int) // ERROR "cannot use make\(chan int\)|incompatible"
x = make(chan int, 0) // ERROR "cannot use make\(chan int, 0\)|incompatible"
x = make(chan int, zero) // ERROR "cannot use make\(chan int, zero\)|incompatible"
+ _ = x
}