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

cs0719.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: dd0fc780bc9c67634a955e918319e0cf074a7d96 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// cs0719.cs: 'StaticClass': array elements cannot be of static type
// Line: 10

static class StaticClass {
}

class MainClass {
    public static object Method ()
    {
        return new StaticClass [3];
    }
}