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: 1baac839adc7013cb12b551ad86c8ff34661bcca (plain)
1
2
3
4
5
6
7
8
9
// cs0516.cs: Constructor `Sample.Sample()' cannot call itself
// Line: 5

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