[w32file] Move MonoIO.Find{First,Next,Close} to managed
[mono.git] / mcs / errors / cs1930-2.cs
1 // CS1930: A range variable `i' has already been declared in this scope
2 // Line: 14
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 i = 1
14                         let i = 2
15                         select v;
16         }
17 }