2012-02-16 21:51:04 -07:00
|
|
|
// run
|
2008-06-06 14:28:03 -06:00
|
|
|
|
|
|
|
// 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.
|
|
|
|
|
2012-02-23 17:48:19 -07:00
|
|
|
// Test switch statements.
|
|
|
|
|
2008-06-06 14:28:03 -06:00
|
|
|
package main
|
|
|
|
|
2012-02-23 17:48:19 -07:00
|
|
|
import "os"
|
|
|
|
|
2008-06-06 14:28:03 -06:00
|
|
|
func assert(cond bool, msg string) {
|
|
|
|
if !cond {
|
2010-09-03 18:36:13 -06:00
|
|
|
print("assertion fail: ", msg, "\n")
|
|
|
|
panic(1)
|
2008-06-06 14:28:03 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func main() {
|
2010-09-03 18:36:13 -06:00
|
|
|
i5 := 5
|
|
|
|
i7 := 7
|
|
|
|
hello := "hello"
|
2008-06-06 14:28:03 -06:00
|
|
|
|
|
|
|
switch true {
|
2011-11-13 20:58:08 -07:00
|
|
|
case i5 < 5:
|
|
|
|
assert(false, "<")
|
|
|
|
case i5 == 5:
|
|
|
|
assert(true, "!")
|
|
|
|
case i5 > 5:
|
|
|
|
assert(false, ">")
|
2008-06-06 14:28:03 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
switch {
|
2011-11-13 20:58:08 -07:00
|
|
|
case i5 < 5:
|
|
|
|
assert(false, "<")
|
|
|
|
case i5 == 5:
|
|
|
|
assert(true, "!")
|
|
|
|
case i5 > 5:
|
|
|
|
assert(false, ">")
|
2008-06-06 14:28:03 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
switch x := 5; true {
|
2011-11-13 20:58:08 -07:00
|
|
|
case i5 < x:
|
|
|
|
assert(false, "<")
|
|
|
|
case i5 == x:
|
|
|
|
assert(true, "!")
|
|
|
|
case i5 > x:
|
|
|
|
assert(false, ">")
|
2008-06-06 14:28:03 -06:00
|
|
|
}
|
|
|
|
|
2008-06-06 16:53:14 -06:00
|
|
|
switch x := 5; true {
|
2011-11-13 20:58:08 -07:00
|
|
|
case i5 < x:
|
|
|
|
assert(false, "<")
|
|
|
|
case i5 == x:
|
|
|
|
assert(true, "!")
|
|
|
|
case i5 > x:
|
|
|
|
assert(false, ">")
|
2008-06-06 14:28:03 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
switch i5 {
|
2011-11-13 20:58:08 -07:00
|
|
|
case 0:
|
|
|
|
assert(false, "0")
|
|
|
|
case 1:
|
|
|
|
assert(false, "1")
|
|
|
|
case 2:
|
|
|
|
assert(false, "2")
|
|
|
|
case 3:
|
|
|
|
assert(false, "3")
|
|
|
|
case 4:
|
|
|
|
assert(false, "4")
|
|
|
|
case 5:
|
|
|
|
assert(true, "5")
|
|
|
|
case 6:
|
|
|
|
assert(false, "6")
|
|
|
|
case 7:
|
|
|
|
assert(false, "7")
|
|
|
|
case 8:
|
|
|
|
assert(false, "8")
|
|
|
|
case 9:
|
|
|
|
assert(false, "9")
|
|
|
|
default:
|
|
|
|
assert(false, "default")
|
2008-06-06 14:28:03 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
switch i5 {
|
2011-11-13 20:58:08 -07:00
|
|
|
case 0, 1, 2, 3, 4:
|
|
|
|
assert(false, "4")
|
|
|
|
case 5:
|
|
|
|
assert(true, "5")
|
|
|
|
case 6, 7, 8, 9:
|
|
|
|
assert(false, "9")
|
|
|
|
default:
|
|
|
|
assert(false, "default")
|
2008-06-06 14:28:03 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
switch i5 {
|
|
|
|
case 0:
|
|
|
|
case 1:
|
|
|
|
case 2:
|
|
|
|
case 3:
|
2011-11-13 20:58:08 -07:00
|
|
|
case 4:
|
|
|
|
assert(false, "4")
|
|
|
|
case 5:
|
|
|
|
assert(true, "5")
|
2008-06-06 14:28:03 -06:00
|
|
|
case 6:
|
|
|
|
case 7:
|
|
|
|
case 8:
|
2009-09-14 22:03:53 -06:00
|
|
|
case 9:
|
2011-11-13 20:58:08 -07:00
|
|
|
default:
|
|
|
|
assert(i5 == 5, "good")
|
2008-06-06 14:28:03 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
switch i5 {
|
2011-11-13 20:58:08 -07:00
|
|
|
case 0:
|
|
|
|
dummy := 0
|
|
|
|
_ = dummy
|
|
|
|
fallthrough
|
|
|
|
case 1:
|
|
|
|
dummy := 0
|
|
|
|
_ = dummy
|
|
|
|
fallthrough
|
|
|
|
case 2:
|
|
|
|
dummy := 0
|
|
|
|
_ = dummy
|
|
|
|
fallthrough
|
|
|
|
case 3:
|
|
|
|
dummy := 0
|
|
|
|
_ = dummy
|
|
|
|
fallthrough
|
|
|
|
case 4:
|
|
|
|
dummy := 0
|
|
|
|
_ = dummy
|
|
|
|
assert(false, "4")
|
|
|
|
case 5:
|
|
|
|
dummy := 0
|
|
|
|
_ = dummy
|
|
|
|
fallthrough
|
|
|
|
case 6:
|
|
|
|
dummy := 0
|
|
|
|
_ = dummy
|
|
|
|
fallthrough
|
|
|
|
case 7:
|
|
|
|
dummy := 0
|
|
|
|
_ = dummy
|
|
|
|
fallthrough
|
|
|
|
case 8:
|
|
|
|
dummy := 0
|
|
|
|
_ = dummy
|
|
|
|
fallthrough
|
|
|
|
case 9:
|
|
|
|
dummy := 0
|
|
|
|
_ = dummy
|
|
|
|
fallthrough
|
|
|
|
default:
|
|
|
|
dummy := 0
|
|
|
|
_ = dummy
|
|
|
|
assert(i5 == 5, "good")
|
2008-06-06 14:28:03 -06:00
|
|
|
}
|
|
|
|
|
2010-09-03 18:36:13 -06:00
|
|
|
fired := false
|
2008-06-06 14:28:03 -06:00
|
|
|
switch i5 {
|
2011-11-13 20:58:08 -07:00
|
|
|
case 0:
|
|
|
|
dummy := 0
|
|
|
|
_ = dummy
|
|
|
|
fallthrough // tests scoping of cases
|
|
|
|
case 1:
|
|
|
|
dummy := 0
|
|
|
|
_ = dummy
|
|
|
|
fallthrough
|
|
|
|
case 2:
|
|
|
|
dummy := 0
|
|
|
|
_ = dummy
|
|
|
|
fallthrough
|
|
|
|
case 3:
|
|
|
|
dummy := 0
|
|
|
|
_ = dummy
|
|
|
|
fallthrough
|
|
|
|
case 4:
|
|
|
|
dummy := 0
|
|
|
|
_ = dummy
|
|
|
|
assert(false, "4")
|
|
|
|
case 5:
|
|
|
|
dummy := 0
|
|
|
|
_ = dummy
|
|
|
|
fallthrough
|
|
|
|
case 6:
|
|
|
|
dummy := 0
|
|
|
|
_ = dummy
|
|
|
|
fallthrough
|
|
|
|
case 7:
|
|
|
|
dummy := 0
|
|
|
|
_ = dummy
|
|
|
|
fallthrough
|
|
|
|
case 8:
|
|
|
|
dummy := 0
|
|
|
|
_ = dummy
|
|
|
|
fallthrough
|
|
|
|
case 9:
|
|
|
|
dummy := 0
|
|
|
|
_ = dummy
|
|
|
|
fallthrough
|
|
|
|
default:
|
|
|
|
dummy := 0
|
|
|
|
_ = dummy
|
|
|
|
fired = !fired
|
|
|
|
assert(i5 == 5, "good")
|
2008-06-06 14:28:03 -06:00
|
|
|
}
|
2010-09-03 18:36:13 -06:00
|
|
|
assert(fired, "fired")
|
2008-06-06 14:28:03 -06:00
|
|
|
|
2010-09-03 18:36:13 -06:00
|
|
|
count := 0
|
2008-06-06 14:28:03 -06:00
|
|
|
switch i5 {
|
2011-11-13 20:58:08 -07:00
|
|
|
case 0:
|
|
|
|
count = count + 1
|
|
|
|
fallthrough
|
|
|
|
case 1:
|
|
|
|
count = count + 1
|
|
|
|
fallthrough
|
|
|
|
case 2:
|
|
|
|
count = count + 1
|
|
|
|
fallthrough
|
|
|
|
case 3:
|
|
|
|
count = count + 1
|
|
|
|
fallthrough
|
|
|
|
case 4:
|
|
|
|
count = count + 1
|
|
|
|
assert(false, "4")
|
|
|
|
case 5:
|
|
|
|
count = count + 1
|
|
|
|
fallthrough
|
|
|
|
case 6:
|
|
|
|
count = count + 1
|
|
|
|
fallthrough
|
|
|
|
case 7:
|
|
|
|
count = count + 1
|
|
|
|
fallthrough
|
|
|
|
case 8:
|
|
|
|
count = count + 1
|
|
|
|
fallthrough
|
|
|
|
case 9:
|
|
|
|
count = count + 1
|
|
|
|
fallthrough
|
|
|
|
default:
|
|
|
|
assert(i5 == count, "good")
|
2008-06-06 14:28:03 -06:00
|
|
|
}
|
2010-09-03 18:36:13 -06:00
|
|
|
assert(fired, "fired")
|
2008-06-06 14:28:03 -06:00
|
|
|
|
2008-06-15 21:24:30 -06:00
|
|
|
switch hello {
|
2011-11-13 20:58:08 -07:00
|
|
|
case "wowie":
|
|
|
|
assert(false, "wowie")
|
|
|
|
case "hello":
|
|
|
|
assert(true, "hello")
|
|
|
|
case "jumpn":
|
|
|
|
assert(false, "jumpn")
|
|
|
|
default:
|
|
|
|
assert(false, "default")
|
2008-06-15 21:24:30 -06:00
|
|
|
}
|
|
|
|
|
2010-09-03 18:36:13 -06:00
|
|
|
fired = false
|
2008-06-06 14:28:03 -06:00
|
|
|
switch i := i5 + 2; i {
|
2011-11-13 20:58:08 -07:00
|
|
|
case i7:
|
|
|
|
fired = true
|
|
|
|
default:
|
|
|
|
assert(false, "fail")
|
2008-06-06 14:28:03 -06:00
|
|
|
}
|
2010-09-03 18:36:13 -06:00
|
|
|
assert(fired, "var")
|
2011-11-13 20:58:08 -07:00
|
|
|
|
|
|
|
// switch on nil-only comparison types
|
|
|
|
switch f := func() {}; f {
|
|
|
|
case nil:
|
|
|
|
assert(false, "f should not be nil")
|
|
|
|
default:
|
|
|
|
}
|
|
|
|
|
|
|
|
switch m := make(map[int]int); m {
|
|
|
|
case nil:
|
|
|
|
assert(false, "m should not be nil")
|
|
|
|
default:
|
|
|
|
}
|
|
|
|
|
|
|
|
switch a := make([]int, 1); a {
|
|
|
|
case nil:
|
|
|
|
assert(false, "m should not be nil")
|
|
|
|
default:
|
|
|
|
}
|
2012-02-23 17:48:19 -07:00
|
|
|
|
2012-08-03 13:47:26 -06:00
|
|
|
// switch on interface.
|
|
|
|
switch i := interface{}("hello"); i {
|
|
|
|
case 42:
|
|
|
|
assert(false, `i should be "hello"`)
|
|
|
|
case "hello":
|
|
|
|
assert(true, "hello")
|
|
|
|
default:
|
|
|
|
assert(false, `i should be "hello"`)
|
|
|
|
}
|
|
|
|
|
2012-09-17 13:29:10 -06:00
|
|
|
// switch on implicit bool converted to interface
|
|
|
|
// was broken: see issue 3980
|
|
|
|
switch i := interface{}(true); {
|
|
|
|
case i:
|
|
|
|
assert(true, "true")
|
|
|
|
case false:
|
|
|
|
assert(false, "i should be true")
|
|
|
|
default:
|
|
|
|
assert(false, "i should be true")
|
|
|
|
}
|
|
|
|
|
2012-08-03 13:47:26 -06:00
|
|
|
// switch on array.
|
|
|
|
switch ar := [3]int{1, 2, 3}; ar {
|
|
|
|
case [3]int{1,2,3}:
|
|
|
|
assert(true, "[1 2 3]")
|
|
|
|
case [3]int{4,5,6}:
|
|
|
|
assert(false, "ar should be [1 2 3]")
|
|
|
|
default:
|
|
|
|
assert(false, "ar should be [1 2 3]")
|
|
|
|
}
|
|
|
|
|
|
|
|
// switch on channel
|
|
|
|
switch c1, c2 := make(chan int), make(chan int); c1 {
|
|
|
|
case nil:
|
|
|
|
assert(false, "c1 did not match itself")
|
|
|
|
case c2:
|
|
|
|
assert(false, "c1 did not match itself")
|
|
|
|
case c1:
|
|
|
|
assert(true, "chan")
|
|
|
|
default:
|
|
|
|
assert(false, "c1 did not match itself")
|
|
|
|
}
|
|
|
|
|
2012-02-23 17:48:19 -07:00
|
|
|
i := 0
|
|
|
|
switch x := 5; {
|
|
|
|
case i < x:
|
|
|
|
os.Exit(0)
|
|
|
|
case i == x:
|
|
|
|
case i > x:
|
|
|
|
os.Exit(1)
|
|
|
|
}
|
2008-06-06 14:28:03 -06:00
|
|
|
}
|