2010-06-03 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs0156-2.cs
blobb487c753cb08b3832e347e273f4c25667d9745cf
1 // CS0156: A throw statement with no arguments is not allowed outside of a catch clause
2 // Line: 14
4 using System;
6 class Foo
8 static void Main ()
10 try {
11 Console.WriteLine ("TEST");
13 finally {
14 throw;