[interp] Don't check for exception in native wrappers (#14184)
[mono-project.git] / mcs / errors / cs1932-2.cs
blobf58cb3c9ec4e8594893afdb8510520a68498c443
1 // CS1932: A range variable `ii' cannot be initialized with `method group'
2 // Line: 12
4 using System;
5 using System.Linq;
7 class C
9 public void Foo (int i)
11 var e = from v in "a"
12 let ii = Foo
13 select v;