2010-06-04 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / gcs0103-4.cs
blobc73714e1c33e932fe6963ca6808d74e14fab03d0
1 // CS0103: The name `b' does not exist in the current context
2 // Line: 11
4 using System.Linq;
6 class C
8 public static void Main ()
10 var e = from a in "abcd"
11 join b in "defg" on b equals "g"
12 select a;