blob: f58cb3c9ec4e8594893afdb8510520a68498c443 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
// CS1932: A range variable `ii' cannot be initialized with `method group'
// Line: 12
using System;
using System.Linq;
class C
{
public void Foo (int i)
{
var e = from v in "a"
let ii = Foo
select v;
}
}
|