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

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