Wed Oct 17 13:24:33 CEST 2007 Paolo Molaro <lupus@ximian.com>
[mono.git] / mcs / errors / cs0642.cs
1 // cs0642.cs: Possible mistaken empty statement
2 // Line: 7
3 // Compiler options: -warnaserror -warn:3
4
5 class X{
6         static void Main ()
7         {
8                 if (true);
9         }
10 }