[interp] Fall back to old implementation when calling on proxy
[mono-project.git] / mcs / tests / test-anon-173.cs
blob52d2b31f887466120bd4d69f5e8b56897d09537c
1 using System;
3 class MainClass
5 public static void Main ()
7 SomeMethod (() => {
8 Func<int,int> f = b => b;
9 retry:
10 goto retry;
11 });
14 static void SomeMethod (Action a)