Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cs1525-13.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: cd091bc9c14add8528e2a2eb5a13f8eb8eff8ba6 (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);
	}
}