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

cs1511.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b19ebf72d7077c5193a9991d9f253e9f40036667 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// CS1511: Keyword `base' is not available in a static method
// Line:

class Y {
	public int a;
}

class X : Y {

	static void Main ()
	{
		base.a = 1;
	}
}