github.com/neugram/ng@v0.0.0-20180309130942-d472ff93d872/eval/testdata/switch8.ng (about)

     1  invalid := true
     2  
     3  switch 42 {
     4  case 1:
     5  	panic("ERROR")
     6  default:
     7  	invalid = false
     8  }
     9  
    10  if invalid {
    11  	panic("ERROR")
    12  }
    13  
    14  print("OK")