1 using C
= System
.Console
;
5 public static void Main (string[] args
) {
10 int flag
= 1; //makes the next if computable -- essential!
12 C
.WriteLine("**** This one is expected");
17 break; //break-1 This point is REACHABLE through break-2,
18 // contrary to the warning from compiler!
21 C
.WriteLine("**** THIS SHOULD NOT APPEAR, since break-1 was supposed to fire ***");