2003-12-25 Sebastien Pouliot <spouliot@videotron.ca>
[mono.git] / mcs / errors / cs0175.cs
1 // cs0175: wrong context for use of `base' keyword
2 // Line: 8
3 using System.Collections;
4 class Collection : CollectionBase
5 {
6         public int Add (int x)
7         {
8                 return ((IList) base).Add (x);
9         }
10 }
11
12