2009-06-24 Marek Safar <marek.safar@gmail.com>
[mono.git] / mcs / errors / cs0175.cs
1 // cs0175.cs: Use of keyword `base' is not valid in this context
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