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

cs0132.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0ed191add1514100a75662eae04e3de55d8222c2 (plain)
1
2
3
4
5
6
7
// cs0132.cs: `X.X(int)': The static constructor must be parameterless
// Line: 4
class X {
	static X (int x)
	{
	}
}