dlr bug
[mcs.git] / tests / test-257.cs
blobbe48f7d2b40a35ba1f055c7703a41473cc7844ed
1 class X {
2 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 {