blob: a09f17f836e89f104649d34a297a04ef15be40d1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
// CS0158: The label `start' shadows another label by the same name in a contained scope
// Line: 9
class ClassMain {
public static void Main() {
start:
{
start:
goto start;
}
}
}
|