2005-01-31 Zoltan Varga <vargaz@freemail.hu>
[mono.git] / mcs / errors / cs1511.cs
1 // cs1511.cs: Base modifier not allowed in static code
2 // Line:
3
4 class Y {
5         public int a;
6 }
7
8 class X : Y {
9
10         static void Main ()
11         {
12                 base.a = 1;
13         }
14 }