a575963da9
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
21 lines
250 B
C#
21 lines
250 B
C#
// CS0162: Unreachable code detected
|
|
// Line: 12
|
|
// Compiler options: -warnaserror
|
|
|
|
using System;
|
|
|
|
public class Driver
|
|
{
|
|
public static void Main ()
|
|
{
|
|
int yyTop = 0;
|
|
for (; ; ++yyTop) {
|
|
if (yyTop > 0)
|
|
break;
|
|
else
|
|
return;
|
|
}
|
|
}
|
|
}
|
|
|