Russ Cox | 57eb06f | 2012-02-16 23:51:04 -0500 | [diff] [blame] | 1 | // errorcheck |
Luuk van Dijk | 13e92e4 | 2011-11-09 10:58:53 +0100 | [diff] [blame] | 2 | |
| 3 | // Copyright 2011 The Go Authors. All rights reserved. |
| 4 | // Use of this source code is governed by a BSD-style |
| 5 | // license that can be found in the LICENSE file. |
| 6 | |
Rob Pike | 80a9783 | 2012-02-24 11:48:19 +1100 | [diff] [blame] | 7 | // Verify that erroneous type switches are caught be the compiler. |
| 8 | // Issue 2700, among other things. |
| 9 | // Does not compile. |
| 10 | |
Luuk van Dijk | 13e92e4 | 2011-11-09 10:58:53 +0100 | [diff] [blame] | 11 | package main |
| 12 | |
Luuk van Dijk | 0e919ff | 2012-01-24 13:53:00 +0100 | [diff] [blame] | 13 | import ( |
| 14 | "io" |
| 15 | ) |
Luuk van Dijk | 13e92e4 | 2011-11-09 10:58:53 +0100 | [diff] [blame] | 16 | |
| 17 | type I interface { |
Luuk van Dijk | 0e919ff | 2012-01-24 13:53:00 +0100 | [diff] [blame] | 18 | M() |
Luuk van Dijk | 13e92e4 | 2011-11-09 10:58:53 +0100 | [diff] [blame] | 19 | } |
| 20 | |
| 21 | func main(){ |
Luuk van Dijk | 0e919ff | 2012-01-24 13:53:00 +0100 | [diff] [blame] | 22 | var x I |
| 23 | switch x.(type) { |
| 24 | case string: // ERROR "impossible" |
| 25 | println("FAIL") |
| 26 | } |
| 27 | |
| 28 | // Issue 2700: if the case type is an interface, nothing is impossible |
| 29 | |
| 30 | var r io.Reader |
| 31 | |
| 32 | _, _ = r.(io.Writer) |
| 33 | |
| 34 | switch r.(type) { |
| 35 | case io.Writer: |
| 36 | } |
Russ Cox | 74ee51e | 2012-02-06 12:35:29 -0500 | [diff] [blame] | 37 | |
| 38 | // Issue 2827. |
Ian Lance Taylor | 6ed800c | 2012-09-28 08:30:30 -0700 | [diff] [blame] | 39 | switch _ := r.(type) { // ERROR "invalid variable name _|no new variables" |
Russ Cox | 74ee51e | 2012-02-06 12:35:29 -0500 | [diff] [blame] | 40 | } |
Luuk van Dijk | 13e92e4 | 2011-11-09 10:58:53 +0100 | [diff] [blame] | 41 | } |
Luuk van Dijk | 0e919ff | 2012-01-24 13:53:00 +0100 | [diff] [blame] | 42 | |
| 43 | |