Fix loading of documentation XML fragments to use source file and not process path
[mono.git] / mcs / errors / cs0135-4.cs
1 // CS0135: `test' conflicts with a declaration in a child block
2 // Line: 13
3
4 class ClassMain
5 {
6         static bool test = true;
7
8         public static void Main ()
9         {
10                 if (true) {
11                         const bool test = false;
12                 }
13                 test = false;
14         }
15 }
16