[mcs] Reset also all partial parts current-type
[mono-project.git] / mcs / errors / cs0642-2.cs
blob89f6f457786483a5838b5251d5775a84992d7bb7
1 // CS0642: Possible mistaken empty statement
2 // Line: 10
3 // Compiler options: -warnaserror -warn:3
5 public class C
7 public static void Main ()
9 int i= 5;
10 while (i++ < 100);
11 { }