| commit | 74ee51ee92d35ccc6486b9126265bd2c62be2c3f | [log] [tgz] |
|---|---|---|
| author | Russ Cox <rsc@golang.org> | Mon Feb 06 12:35:29 2012 -0500 |
| committer | Russ Cox <rsc@golang.org> | Mon Feb 06 12:35:29 2012 -0500 |
| tree | e6ae64b5e543989a3cc2a505ae456d530a12581e | |
| parent | 98257750f483238f2895d6077bf42e7c91cd8f3d [diff] [blame] |
cmd/gc: disallow switch _ := v.(type) Fixes #2827. R=ken2 CC=golang-dev https://golang.org/cl/5638045
diff --git a/test/typeswitch3.go b/test/typeswitch3.go index 0789801..e11da7d 100644 --- a/test/typeswitch3.go +++ b/test/typeswitch3.go
@@ -30,6 +30,10 @@ switch r.(type) { case io.Writer: } + + // Issue 2827. + switch _ := r.(type) { // ERROR "invalid variable name _" + } }