[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / errors / cs8135.cs
1 // CS8135: Tuple literal `(int, method group)' cannot be converted to type `object'
2 // Line: 8
3
4 class XX
5 {
6         public static void Main ()
7         {
8                 object m = (1, Main);
9         }
10 }