2010-05-19 Jb Evain <jbevain@novell.com>
[mcs.git] / tests / test-226.cs
blob149d495c221d239579c099c07c9750405cbe1699
1 using System;
3 class Test226
5 static bool ok;
7 public static void Test ()
9 int n=0;
10 while (true) {
11 if (++n==5)
12 break;
13 switch (0) {
14 case 0: break;
17 ok = true;
20 public static int Main ()
22 Test ();
23 return ok ? 0 : 1;