aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobert Griesemer <gri@golang.org>2009-12-29 14:01:09 -0800
committerRobert Griesemer <gri@golang.org>2009-12-29 14:01:09 -0800
commita947d0d0c17fda02a105f171daddd686ff1ecc90 (patch)
tree36a702179c241ab7c099e752c4bb4f36cc219c63
parenta58b69e1d0aa8010c48c0707ee7f84c2d22184b9 (diff)
downloadgo-a947d0d0c17fda02a105f171daddd686ff1ecc90.tar.gz
go-a947d0d0c17fda02a105f171daddd686ff1ecc90.zip
test case for issue 471
R=iant CC=golang-dev https://golang.org/cl/183084
-rw-r--r--test/bugs/bug238.go19
-rw-r--r--test/golden.out3
2 files changed, 22 insertions, 0 deletions
diff --git a/test/bugs/bug238.go b/test/bugs/bug238.go
new file mode 100644
index 0000000000..a5737d6602
--- /dev/null
+++ b/test/bugs/bug238.go
@@ -0,0 +1,19 @@
+// errchk $G -e $D/$F.go
+
+// Copyright 2009 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.
+
+// Test case for issue 471. This file shouldn't compile.
+
+package main
+
+const a *int = 1 // ERROR "wrong|incompatible"
+const b [2]int = 2 // ERROR "wrong|incompatible"
+const c map[int]int = 3 // ERROR "wrong|incompatible"
+const d chan int = 4 // ERROR "wrong|incompatible"
+const e func() = 5 // ERROR "wrong|incompatible"
+const f struct{} = 6 // ERROR "wrong|incompatible"
+const g interface{} = 7 // ERROR "wrong|incompatible"
+
+func main() { println(a, b, c, d, e, f, g) }
diff --git a/test/golden.out b/test/golden.out
index 063feccd08..8b092f95ca 100644
--- a/test/golden.out
+++ b/test/golden.out
@@ -148,3 +148,6 @@ panic PC=xxx
=========== bugs/bug219.go
bugs/bug219.go:16: syntax error near if
BUG: bug219
+
+=========== bugs/bug238.go
+BUG: errchk: command succeeded unexpectedly