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