[interp] Fall back to old implementation when calling on proxy
[mono-project.git] / mcs / errors / cs0722.cs
blobc6ecbddc77ecaa230239bfc30eb71a099b199770
1 // CS0722: `StaticClass': static types cannot be used as return types
2 // Line: 8
4 static class StaticClass {
7 class MainClass {
8 public static StaticClass Method ()
10 return null;