2006-09-21 Mike Kestner <mkestner@novell.com>
[mcs.git] / errors / cs0175.cs
blob45782ee438e3a0132643b66262992fb12135d76c
1 // cs0175.cs: Use of keyword `base' is not valid in this context
2 // Line: 8
3 using System.Collections;
4 class Collection : CollectionBase
6 public int Add (int x)
8 return ((IList) base).Add (x);