2005-04-17 Atsushi Enomoto <atsushi@ximian.com>
[mono.git] / mcs / tests / test-362.cs
1 class C
2 {
3         static void Main()
4         {       \r
5                 try {\r
6                     Test ();\r
7                 } catch\r
8                 {\r
9                 }\r
10         }\r
11         \r
12         static void Test ()\r
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 }