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

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