summaryrefslogtreecommitdiff
path: root/mcs/errors/cs1729-2.cs
blob: 1bb856120de8945f5b608a61453caf36fa480997 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// CS1729: The type `X' does not contain a constructor that takes `0' arguments
// Line: 11
class X {

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