Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cs0516.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 6ae4a51b2b5e29df8bb9e67bdf7c0df60c88dc83 (plain)
1
2
3
4
5
6
7
8
9
// cs0516.cs: Constructor 'Sample.Sample()' can not call itself
// Line: 5

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