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: 4ec26c689b45fc1cfe563c56e3a3d8ab95eddadc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// cs1511.cs: Base modifier not allowed in static code
// Line:

class Y {
	public int a;
}

class X : Y {

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