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

test-505.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0ce8deccba553eeaa293271146ef39cdd75d9c2a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
class T {
	public static int i;
	static int f ()
	{
		try {
		} finally {
			throw new System.Exception ("...");
		}
	}
	public static void Main ()
	{
		try {
			i = f ();
		} catch {
			return;
		}
		throw new System.Exception ("error");
	}
}