[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / errors / cs0165-26.cs
1 // CS0165: Use of unassigned local variable `eh'
2 // Line: 12
3
4 using System;
5
6 public class E
7 {
8         public static void Main ()
9         {
10                 EventHandler eh;
11                 eh = delegate {
12                         Console.WriteLine (eh);
13                 };
14         }
15 }