* roottypes.cs: Rename from tree.cs.
[mono.git] / mcs / tests / test-226.cs
1 using System;
2
3 class Test226
4 {
5         static bool ok;
6
7         public static void Test ()
8         {
9                 int n=0;
10                 while (true) {
11                         if (++n==5)
12                                 break;
13                         switch (0) {
14                         case 0: break;
15                         }
16                 }
17                 ok = true;
18         }
19
20         public static int Main ()
21         {
22                 Test ();
23                 return ok ? 0 : 1;
24         }
25 }