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: 84ff3a04e07e44e90b2376e8685e4d659b7dc9f9 (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;
                }
        }
}