[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / errors / cs0716.cs
1 // CS0716: Cannot convert to static type `StaticClass'
2 // Line: 10
3
4 static class StaticClass {
5 }
6
7 class MainClass {
8     public static void Method (object arg)
9     {
10         ((StaticClass)arg).ToString ();
11     }
12 }