[interp] Fall back to old implementation when calling on proxy
[mono-project.git] / mcs / tests / gtest-etree-13.cs
blob5e2cdc3d579ec17a11cc8492b2eb3cda26208344
1 using System;
2 using System.Collections.Generic;
3 using System.Linq;
4 using System.Linq.Expressions;
6 class Program
8 public static int Main ()
10 foreach (int o in Test<bool> (1)) {
13 return 0;
16 static IEnumerable<int> Test<T> (int i)
18 Expression<Func<int>> e = () => i;
19 yield return 1;