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: 4a15a6b297726d12e2aa981acec3025d6f4d7051 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// cs1528.cs: Expected ; or = (cannot specify constructor arguments in declaration)
// Line: 13

class X {
	X (int a)
	{
	}
}

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