[interp] Fall back to old implementation when calling on proxy
[mono-project.git] / mcs / tests / test-257.cs
blobd095550c1f60faea2997d8550b59977ca5258b4b
1 class X {
2 public static void Main ()
4 int a;
6 call (out a);
9 static void call (out int a)
11 while (true){
12 try {
13 a = 1;
14 return ;
15 } catch {