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

test-807.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b411bfc29288c6e46389a3bc55ef318870493f8d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
using System;

class AException : Exception
{
}

class Program
{
	public static int Main ()
	{
		try {
			throw new AException ();
		} catch (AException e1) {
			Console.WriteLine ("a");
			try {
			} catch (Exception) {
			}
			
			return 0;
		} catch (Exception e) {
			Console.WriteLine ("e");
		}
		
		return 1;
	}
}