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

     1  i := 42
     2  switch i {
     3  case 42:
     4  	fallthrough // ERROR: cannot fallthrough final case in switch
     5  }
     6  
     7  print("OK")