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: 818fc92e8dd665c9584cab308f56d29f1c510752 (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 () {}
}