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

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