we do not report cs0229 at all really
[mono.git] / mcs / errors / cs0135.cs
1 // cs0135.cs: 'test' conflicts with the declaration 'ClassMain.test'\r
2 // Line: 11\r
3 \r
4 class ClassMain {\r
5         static bool test = true;\r
6     \r
7         public static void Main() {\r
8                 if (true) {\r
9                         bool test = false;\r
10                 }\r
11                 test = false;\r
12         }\r
13 }\r
14 \r