[mono-api-html] Prettier output using singular and plural forms in sections
[mono-project.git] / mcs / errors / cs1511.cs
blobb19ebf72d7077c5193a9991d9f253e9f40036667
1 // CS1511: Keyword `base' is not available in a static method
2 // Line:
4 class Y {
5 public int a;
8 class X : Y {
10 static void Main ()
12 base.a = 1;