[w32file] Move MonoIO.Find{First,Next,Close} to managed
[mono.git] / mcs / errors / cs0103-10.cs
1 // CS0103: The name `b' does not exist in the current context
2 // Line: 11
3
4 using System.Linq;
5
6 class C
7 {
8         public static void Main ()
9         {
10                 var e = from a in "abcd"
11                         join b in "defg" on b equals "g"
12                         select a;
13         }
14 }