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: 1b4ebf2c7b422f3b4c8145fae8e57f3afb2eb9b0 (plain)
1
2
3
4
5
6
7
// cs0132.cs: A static parameter must  not have any parameters
// Line: 4
class X {
	static X (int x)
	{
	}
}