resync
[mcs.git] / errors / bug4.cs
blob775cfe30349829d84531fb4d55dd28a5491836fd
1 //
2 // Fixed
3 //
4 using System;
6 class X {
7 static void Main ()
9 try {
10 throw new Exception ();
11 } catch (Exception e) {
12 Console.WriteLine ("Caught");
13 throw;
14 } catch {
15 Console.WriteLine ("Again");