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

test-914.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8366f7081edfb3899baec37dda08800c6d21419c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// CS0135: `test' conflicts with a declaration in a child block
// Line: 11

class ClassMain {
        static bool test = true;
    
        public static void Main() {
                if (true) {
                        bool test = false;
                }
                test = false;
        }
}