[corlib] Make Marshal.BufferToBSTR(Array, int) non-public again (#5670)
[mono.git] / mcs / errors / cs0642.cs
1 // CS0642: 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 }