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

cs0135.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 919420f10335b15bb52fdaf14d6238fc64b1cb4c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// cs0135.cs: 'test' conflicts with the declaration 'ClassMain.test'
// Line: 11

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