[bcl] Update BCL Linked Size
[mono-project.git] / mcs / errors / cs0724.cs
bloba0d5c1467c28f1bc6d4c027c16c1e93bcc6ccf7a
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
4 class C
6 static void Test()
8 try
10 throw new System.Exception();
12 catch
14 try
17 finally
19 throw;