Welcome to mirror list, hosted at ThFree Co, Russian Federation.

test-803.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d21ceacc461e3d4660817ccb30fa249b943f4c6f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
using System;

class A
{
	public static int Main ()
	{
		int a = 1;
		while (a < 2) {
			try {}
			finally {
				a++;
			}
		}
		
		return 0;
	}
}