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