codeowners update
[mono.git] / mcs / errors / cs1525-13.cs
1 // CS1525: Unexpected symbol `)', expecting `.' or `['
2 // Line: 10
3
4 using System.Collections;
5
6 class Collection : CollectionBase
7 {
8         public int Add (int x)
9         {
10                 return ((IList) base).Add (x);
11         }
12 }
13
14