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

cs0175.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 45782ee438e3a0132643b66262992fb12135d76c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// cs0175.cs: Use of keyword `base' is not valid in this context
// Line: 8
using System.Collections;
class Collection : CollectionBase
{
	public int Add (int x)
	{
		return ((IList) base).Add (x);
	}
}