blob: 3eb8bcfdb3f5adc8a90bff945f19218a319522bc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
// CS0162: Unreachable code detected
// Line: 9
// Compiler options: -warnaserror -warn:2
class Foo {
static void Main ()
{
goto skip;
a:
goto a;
skip:
return;
}
}
|