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: 92be167d074fff6d7a32c59848a78f6083b52524 (plain)
1
2
3
4
5
6
// cs0710.cs: `StaticClass': Static classes cannot have instance constructors
// Line: 5

static class StaticClass {
        public StaticClass () {}
}