2010-05-25 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / gcs1930.cs
blob83f0fb38239b92a238c38ed93205ca9ed31e3da7
1 // CS1930: A range variable `v' has already been declared in this scope
2 // Line: 13
5 using System;
6 using System.Linq;
8 class C
10 public static void Main ()
12 var e = from v in "a"
13 let v = 1
14 select v;