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) { } }