[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / errors / cs0149-3.cs
1 // CS0149: Method name expected
2 // Line: 10
3
4 delegate void D ();
5
6 public class MainClass
7 {
8         public static void Main ()
9         {
10                 D delegateInstance = new D (Main, null);
11         }
12 }