[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / errors / cs0832.cs
1 // CS0832: An expression tree cannot contain an assignment operator
2 // Line: 13
3
4 using System;
5 using System.Linq.Expressions;
6
7 class C
8 {
9         delegate void D (string s);
10         
11         public static void Main ()
12         {
13                 Expression<D> e = (a) => a = "a";
14         }
15 }