[ilasm] Don't break arguments compatiblity
[mono-project.git] / mcs / tests / test-803.cs
blobd21ceacc461e3d4660817ccb30fa249b943f4c6f
1 using System;
3 class A
5 public static int Main ()
7 int a = 1;
8 while (a < 2) {
9 try {}
10 finally {
11 a++;
15 return 0;