github.com/neugram/ng@v0.0.0-20180309130942-d472ff93d872/eval/testdata/switch7.ng (about) 1 invalid := true 2 3 switch i := 42; i{ 4 case 1, 2, 3: 5 panic("ERROR") 6 case 42: 7 invalid = false 8 default: 9 panic("ERROR") 10 } 11 12 if invalid { 13 panic("ERROR") 14 } 15 16 print("OK")