summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0719.cs
blob: 516bfea1063596517204c20a94b6ee14b7ccb958 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// CS0719: Array elements cannot be of static type `StaticClass'
// Line: 10

static class StaticClass {
}

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