summaryrefslogtreecommitdiff
path: root/test/syntax
diff options
context:
space:
mode:
authorRuss Cox <rsc@golang.org>2011-02-01 14:00:36 -0500
committerRuss Cox <rsc@golang.org>2011-02-01 14:00:36 -0500
commit4bb27fe946d098f18165782d5a511b8f02acf10d (patch)
tree94450c2e64883889623042cb3046b36eb03b480f /test/syntax
parentd2f03b513d317d0b4fc6349d62b925a36928c1eb (diff)
downloadgo-4bb27fe946d098f18165782d5a511b8f02acf10d.tar.gz
gc: handle invalid name in type switch
Fixes issue 1453. R=ken2 CC=golang-dev http://codereview.appspot.com/4125043
Diffstat (limited to 'test/syntax')
-rw-r--r--test/syntax/typesw.go13
1 files changed, 13 insertions, 0 deletions
diff --git a/test/syntax/typesw.go b/test/syntax/typesw.go
new file mode 100644
index 000000000..47f683cdf
--- /dev/null
+++ b/test/syntax/typesw.go
@@ -0,0 +1,13 @@
+// errchk $G -e $D/$F.go
+
+// Copyright 2011 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.
+
+package main
+
+func main() {
+ switch main() := interface{}(nil).(type) { // ERROR "invalid variable name"
+ default:
+ }
+}