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