2010-05-25 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / gcs0136-2.cs
blobcc28afe7b2ed709a67e2e55dd8b4b6a46ca93e79
1 // CS0136: A local variable named `v' cannot be declared in this scope because it would give a different meaning to `v', which is already used in a `parent or current' scope to denote something else
2 // Line: 13
4 using System.Linq;
6 public class Test
8 public static void Main ()
10 var l = from v in "abcd" select (v => v);