2005-01-31 Zoltan Varga <vargaz@freemail.hu>
[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