Merge pull request #495 from nicolas-raoul/fix-for-issue2907-with-no-formatting-changes
[mono.git] / mcs / tests / test-362.cs
1 class C
2 {
3         public static void Main()
4         {       
5                 try {
6                     Test ();
7                 } catch
8                 {
9                 }
10         }
11         
12         static void Test ()
13         {
14                 try
15                 {
16                         throw new System.ArgumentException();
17                 }
18                 catch
19                 {
20                         try
21                         {
22                             throw;
23                         }
24                         finally
25                         {
26                                 
27                         }
28                 }
29         }
30 }