summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0516-2.cs
blob: ed6f4d7df8e9da5aba78b9db3443eb4f500f7c12 (plain)
1
2
3
4
5
6
7
8
9
10
// CS0516: Constructor `A<T>.A(T)' cannot call itself
// Line: 7

public class A<T>
{
	public A (T i)
		: this (i)
	{
	}
}