[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / errors / cs0165-16.cs
1 // Cs0165: Use of unassigned local variable `c'
2 // Line: 9
3
4 public class C
5 {
6         public static void Main ()
7         {
8                 C c;
9                 c.ToString ();
10         }
11 }