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: ce96de582a346c4bd3e895ac0e520343cf40e7b9 (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];
    }
}