**** Merged r40732-r40872 from MCS ****
[mono.git] / mcs / errors / cs0135.cs
1 // cs0135.cs: 'test' conflicts with the declaration 'ClassMain.test'
2 // Line: 11
3
4 class ClassMain {
5         static bool test = true;
6     
7         public static void Main() {
8                 if (true) {
9                         bool test = false;
10                 }
11                 test = false;
12         }
13 }
14