[ilasm] Don't break arguments compatiblity
[mono-project.git] / mcs / errors / cs0156.cs
blobeae7b834477bef1762065292fb849922b6351d5b
1 // CS0156: 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 {