15 lines
205 B
C#
Raw Normal View History

// CS0429: Unreachable expression code detected
// Line: 12
// Compiler options: -warnaserror
public class X
{
static void test (int stop)
{
int pos = 0;
do {
break;
} while (pos < stop);
}
}