[mcs] C#7 throw expression
[mono.git] / mcs / tests / test-19.cs
index f63dff5295805505f56bb0939eae68308119929d..b04589cdc95029b14cde195c9e5d23fe8f32be4c 100644 (file)
@@ -111,4 +111,12 @@ namespace NameSpace {
        public delegate int TestDelegate (int a);
 
 }
-       
+
+
+namespace TestNamespace
+{
+       public class TestClass
+       {
+               public delegate float NotWorkingDelegate(float point, params object [] hiddenParams);
+       }
+}