1 2 3 4 5 6 7 8 9 10 11 12
// CS0162: Unreachable code detected // Line: 10 // Compiler options: -warnaserror -warn:2 class C { static int Main () { while (!new bool {}); return 1; } }