[interp] Fall back to old implementation when calling on proxy
[mono-project.git] / mcs / tests / gtest-iter-25.cs
blob4d039a00ccd70144ee71bc18b2d2354ff20457e3
1 using System.Collections.Generic;
3 namespace Test
5 public static class Program
7 public static void Main ()
9 foreach (var a in Test ())
10 Test ();
13 public static IEnumerable<object> Test ()
15 lock (new object ()) {
16 yield return null;
17 yield break;