2004-12-14 Marek Safar <marek.safar@seznam.cz>
[mono.git] / mcs / errors / cs0724.cs
1 // CS0742: A throw statement with no argument is only allowed in a catch clause nested inside of the innermost catch clause
2 // Line: 14
3
4 using System;
5
6 class Foo
7 {
8         static void Main ()
9         {
10                 try {
11                     Console.WriteLine ("TEST");
12                 }
13                 finally {
14                         throw;
15                 }                       
16         }
17 }