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: 02ea2eeb3582adb119bb83e364913107b4f08253 (plain)
1
2
3
4
5
6
// CS0710: `StaticClass': Static classes cannot have instance constructors
// Line: 5

static class StaticClass {
        public StaticClass () {}
}