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

cs0522.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 86eac46d21cba93a09b3e755d3dc9b9baf534535 (plain)
1
2
3
4
5
6
7
// cs0522.cs: 'SampleStruct.SampleStruct(int)' : structs cannot call base class constructors
// Line: 5

struct SampleStruct {
        public SampleStruct (int value): base (value) {}
}