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: 9801963858a6cef1a461a1afcc1560ea21098202 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// cs0175: wrong context for use of `base' keyword
// Line: 8
using System.Collections;
class Collection : CollectionBase
{
	public int Add (int x)
	{
		return ((IList) base).Add (x);
	}
}