Initial set of Ward sgen annotations (#5705)
[mono.git] / mcs / errors / cs0103-3.cs
1 // CS0103: The name `test' does not exist in the current context
2 // Line: 11
3
4 class ClassMain
5 {
6         public static void Main ()
7         {
8                 if (true) {
9                         const bool test = false;
10                 }
11                 test = false;
12         }
13         
14         static bool Test { 
15                 set {
16                 }
17         }
18 }
19