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

cs0708.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 093ce18142c2897a8795549c75e26a66415719cb (plain)
1
2
3
4
5
6
// cs0708.cs: 'StaticClass.i': cannot declare instance members in a static class
// Line: 5

static class StaticClass {
        public int i;
}