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: c22434df4cdd622dbfb57f58a3a098ec3b02453e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// cs0723.cs: Cannot declare variable of static type 'StaticClass'
// Line: 10

static class StaticClass {
}

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