Initial set of Ward sgen annotations (#5705)
[mono.git] / mcs / tests / test-807.cs
1 using System;
2
3 class AException : Exception
4 {
5 }
6
7 class Program
8 {
9         public static int Main ()
10         {
11                 try {
12                         throw new AException ();
13                 } catch (AException e1) {
14                         Console.WriteLine ("a");
15                         try {
16                         } catch (Exception) {
17                         }
18                         
19                         return 0;
20                 } catch (Exception e) {
21                         Console.WriteLine ("e");
22                 }
23                 
24                 return 1;
25         }
26 }