2010-05-25 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs0724.cs
blobb4da1604af52ca45cae5b540527170efa7852f2e
1 // cs0724.cs: 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;