Merge pull request #5714 from alexischr/update_bockbuild
[mono.git] / mcs / tests / test-257.cs
1 class X {
2         public static void Main ()
3         {
4                 int a;
5
6                 call (out a);
7         }
8
9         static void call (out int a)
10         {
11                 while (true){
12                         try {
13                                 a = 1;
14                                 return ;
15                         } catch {
16                         }
17                 }
18         }
19 }