**** Merged from MCS ****
[mono-project.git] / mcs / errors / cs0175.cs
blob9801963858a6cef1a461a1afcc1560ea21098202
1 // cs0175: wrong context for use of `base' keyword
2 // Line: 8
3 using System.Collections;
4 class Collection : CollectionBase
6 public int Add (int x)
8 return ((IList) base).Add (x);