cleol
[mcs.git] / errors / gcs1932.cs
blob1952868810664fc25323d65c0fff5da30ad21ac3
1 // CS1932: A range variable `ii' cannot be initialized with `void'
2 // Line: 13
5 using System;
6 using System.Linq;
8 class C
10 public void Foo (int i)
12 var e = from v in "a"
13 let ii = Foo (2)
14 select v;