Updated with review feedback.
[mono.git] / mcs / errors / cs0516-2.cs
1 // CS0516: Constructor `A<T>.A(T)' cannot call itself
2 // Line: 7
3
4 public class A<T>
5 {
6         public A (T i)
7                 : this (i)
8         {
9         }
10 }