[mini] Fix test compiling when running !MOBILE
[mono.git] / mcs / errors / cs0719.cs
1 // CS0719: Array elements cannot be of static type `StaticClass'
2 // Line: 10
3
4 static class StaticClass {
5 }
6
7 class MainClass {
8     public static object Method ()
9     {
10         return new StaticClass [3];
11     }
12 }