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