Updated.
[mono.git] / mcs / errors / cs0642-2.cs
1 // cs0642.cs: Possible mistaken empty statement
2 // Line: 9
3
4 public class C
5 {
6     public static void Main ()
7     {
8         int i= 5;
9         while (i++ < 100);
10             { }
11     }
12 }
13