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