[corlib] Make Marshal.BufferToBSTR(Array, int) non-public again (#5670)
[mono.git] / mcs / errors / cs0162-13.cs
1 // CS0162: Unreachable code detected
2 // Line: 10
3 // Compiler options: -warnaserror -warn:2
4
5 class C
6 {
7         static int Main () 
8         {
9                 while (!new bool {});
10                 return 1;
11         }
12 }