2009-06-12 Bill Holmes <billholmes54@gmail.com>
[mono.git] / mcs / errors / cs0175-2.cs
1 // cs0175-2.cs: Use of keyword `base' is not valid in this context
2 // Line: 13
3
4 class DerivedClass {
5         public DerivedClass() {
6                 base = null;
7         }
8 }
9