2010-04-03 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / gcs0136.cs
blob59de3c0bb9654b78af9c964c15ecaabab3e13b2a
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 `child' scope to denote something else
2 // Line: 11
4 using System.Linq;
6 class C
8 public static void Main ()
10 var l = from v in "abcd" select v;
11 int v;