[w32file] Move MonoIO.Find{First,Next,Close} to managed
[mono.git] / mcs / errors / cs0724.cs
1 // CS0724: A throw statement with no arguments is not allowed inside of a finally clause nested inside of the innermost catch clause
2 // Line: 14
3
4 class C
5 {
6         static void Test()
7         {
8                 try
9                 {
10                         throw new System.Exception();
11                 }
12                 catch
13                 {
14                         try
15                         {
16                         }
17                         finally
18                         {
19                                 throw;
20                         }
21                 }
22         }
23 }