[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / errors / cs0119-2.cs
1 // CS0119: Expression denotes a `type', where a `variable', `value' or `method group' was expected
2 // Line: 14
3
4 using System;
5
6 namespace Test
7 {
8         public delegate void SomeDel (Action a);
9
10         public class TestClass
11         {
12                 public void TestMethod ()
13                 {
14                         SomeDel (() => { });
15                 }
16         }
17 }