summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0516.cs
blob: 5c41f8dc4e7a3233722dc1eb56fcf70ccf64f879 (plain)
1
2
3
4
5
6
7
8
9
// CS0516: Constructor `Sample.Sample()' cannot call itself
// Line: 6

class Sample {
	public Sample ()
		: this ()
	{
	}
}