[interp] Fall back to old implementation when calling on proxy
[mono-project.git] / mcs / errors / cs0103-9.cs
blob80ced48249fb2f6b5cca4c0ba1feacdca9007193
1 // CS0103: The name `a' 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 "a" equals a
12 select a;