summaryrefslogtreecommitdiff
path: root/mcs/errors/cs1525-13.cs
blob: b20dce864b7e7fb3f21727ccd536a87ec1eaca49 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// CS1525: Unexpected symbol `)', expecting `.' or `['
// Line: 10

using System.Collections;

class Collection : CollectionBase
{
	public int Add (int x)
	{
		return ((IList) base).Add (x);
	}
}