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

cs0723.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 413dc9bdb4900c1138d6e308fab006b08571be39 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// CS0723: `sc': cannot declare variables of static types
// Line: 10

static class StaticClass {
}

class MainClass {
    public static void Main ()
    {
        StaticClass sc;
    }
}