New test.
[mono.git] / mcs / errors / cs0516.cs
1 // cs0516.cs: Constructor `Sample.Sample()' cannot call itself
2 // Line: 5
3
4 class Sample {
5         public Sample (): this () {}
6 }
7
8
9