15 lines
205 B
C#
15 lines
205 B
C#
|
// 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);
|
||
|
}
|
||
|
}
|