Remove these tests, they are no longer valid
[mono.git] / mcs / errors / cs1677-2.cs
diff --git a/mcs/errors/cs1677-2.cs b/mcs/errors/cs1677-2.cs
deleted file mode 100644 (file)
index b0f1ba7..0000000
+++ /dev/null
@@ -1,13 +0,0 @@
-// cs1677-2.cs: Parameter `1' should not be declared with the `ref' keyword
-// Line: 11
-//
-// The delegate has an explicit signature, so it can not be assigned.
-//
-delegate void D (int x);
-
-class X {
-       static void Main ()
-       {
-               D d2 = delegate (ref int x) {};
-       }
-}