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

cs1501-2.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 18d3b1a381d61a14425f67ca38c254672747fe1e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// cs1501: no match for this argument list
// Line: 11
class X {

	X (int a)
	{
	}
	
	static void Main ()
	{
		new X ();
	}
}