Merge pull request #5714 from alexischr/update_bockbuild
[mono.git] / mcs / errors / cs0156-2.cs
1 // CS0156: A throw statement with no arguments is not allowed outside of a 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 }