codeowners update
[mono.git] / mcs / tests / test-803.cs
1 using System;
2
3 class A
4 {
5         public static int Main ()
6         {
7                 int a = 1;
8                 while (a < 2) {
9                         try {}
10                         finally {
11                                 a++;
12                         }
13                 }
14                 
15                 return 0;
16         }
17 }