Welcome to mirror list, hosted at ThFree Co, Russian Federation.

test-373.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 25acc18ea98c0fc8f95c06db0c31884108cc68e4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
using C = System.Console;

class Test  {
    
    public static void Main (string[] args) {
      switch (1) {
        default:
          switch (2) {
            default:
              int flag = 1;       //makes the next if computable -- essential!
	      if (flag == 1) {
		C.WriteLine("**** This one is expected");
                break;  //break-2
	      }  
              else  goto lbl;
          }
	  break;  //break-1  This point is REACHABLE through break-2, 
	          // contrary to the warning from compiler!
        
        lbl:
          C.WriteLine("**** THIS SHOULD NOT APPEAR, since break-1 was supposed to fire ***");
          break;
        
      }
    }
}