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

cs0710.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ac37787327a1d44d721e5cd20d97da02ba8f7271 (plain)
1
2
3
4
5
6
// cs0710.cs: 'StaticClass': Static classes cannot have instance constructors
// Line: 5

static class StaticClass {
        public StaticClass () {}
}