Replace SIZEOF_REGISTER with sizeof(mgreg_t) for consistency with sizeof(gpointer)
[mono.git] / mcs / errors / gcs0162-2.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 }