[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / errors / cs0835.cs
1 // CS0835: Cannot convert `lambda expression' to an expression tree of non-delegate type `string'
2 // Line: 10
3
4 using System.Linq.Expressions;
5
6 class C
7 {
8         public void Foo ()
9         {
10                 Expression<string> e = () => "a";
11         }
12 }