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

cs1528.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7223adc8f40c5b5d926f51b427e394343ae8b803 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// cs1528.cs: cant specify constructor arguments in declaration
// Line:
class X {
	X (int a)
	{
	}
}

class Y {
	static void Main ()
	{
		X x (4);
	}
}