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

cs0712.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d22fa5d11216c3a88d83cebf21b2f403de067459 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// cs0712.cs: Cannot create an instance of the static class 'StaticClass'
// Line: 10

static class StaticClass {
}

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