Remove invalid tests for image palettes in GdiPlusTest (#5671)
[mono.git] / mcs / errors / cs0722-2.cs
1 // CS0722: `StaticClass': static types cannot be used as return types
2 // Line: 8
3
4 static class StaticClass {
5 }
6
7 class MainClass {
8     public static StaticClass Prop {
9         get {
10             return null;
11         }
12     }
13 }