[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / errors / cs1932-2.cs
1 // CS1932: A range variable `ii' cannot be initialized with `method group'
2 // Line: 12
3
4 using System;
5 using System.Linq;
6
7 class C
8 {
9         public void Foo (int i)
10         {
11                 var e = from v in "a"
12                         let ii = Foo
13                         select v;
14         }
15 }