Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cs0158.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f806cc616158409dff25a5e394ff495f74b9f6e8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// cs0158.cs: 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;
                }
        }
}