2003-01-21 Atsushi Enomoto <ginga@kit.hi-ho.ne.jp>
[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 }