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

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

class X {
	static void Main ()
	{
		try {
			throw new Exception ();
		} catch (Exception e) {
			Console.WriteLine ("Caught");
			throw;
		} catch {
			Console.WriteLine ("Again");
		}
	}
}