[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / errors / cs1930.cs
1 // CS1930: A range variable `v' has already been declared in this scope
2 // Line: 13
3
4
5 using System;
6 using System.Linq;
7
8 class C
9 {
10         public static void Main ()
11         {
12                 var e = from v in "a"
13                         let v = 1
14                         select v;
15         }
16 }