[mcs] Remove unwanted tests
authorMarek Safar <marek.safar@gmail.com>
Mon, 5 Jun 2017 18:53:24 +0000 (20:53 +0200)
committerMarek Safar <marek.safar@gmail.com>
Mon, 5 Jun 2017 18:56:09 +0000 (20:56 +0200)
mcs/errors/cs1061-18.cs [deleted file]
mcs/errors/cs4001-3.cs [deleted file]

diff --git a/mcs/errors/cs1061-18.cs b/mcs/errors/cs1061-18.cs
deleted file mode 100644 (file)
index 1f201d5..0000000
+++ /dev/null
@@ -1,18 +0,0 @@
-// CS1061: No overload for method `Call' takes `0' arguments
-// Line: 11
-
-using System;
-class Program
-{
-       static void Main ()
-       {
-               Action<dynamic, object> action = delegate { };
-               Foo (action).NoDynamicBinding ();
-       }
-       static T Foo<T>(Action<T, T> x)
-       {
-               throw new NotImplementedException ();
-       }
-}
\ No newline at end of file
diff --git a/mcs/errors/cs4001-3.cs b/mcs/errors/cs4001-3.cs
deleted file mode 100644 (file)
index 9f4d82c..0000000
+++ /dev/null
@@ -1,12 +0,0 @@
-// CS4001: Cannot await `void' expression
-// Line: 10
-
-using System;
-
-class A
-{
-       static async void Test ()
-       {
-               await Console.WriteLine;
-       }
-}