[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / errors / cs1644-23.cs
1 // CS1644: Feature `lambda expressions' cannot be used because it is not part of the C# 2.0 language specification
2 // Line: 11
3 // Compiler options: -langversion:ISO-2
4
5 class C
6 {
7         delegate void D ();
8         
9         public void Foo ()
10         {
11                 D e = () => { };
12         }
13 }
14