Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarek Safar <marek.safar@gmail.com>2017-06-05 21:53:24 +0300
committerMarek Safar <marek.safar@gmail.com>2017-06-05 21:56:09 +0300
commit8873c444008009fd9d588091cfaad1014858df1c (patch)
tree6520dda5a32bfd6b76e2b3a124ab6e7208154ee4 /mcs/errors
parentb6034823438949e6ecbf03becda026eb4fe874ee (diff)
[mcs] Remove unwanted tests
Diffstat (limited to 'mcs/errors')
-rw-r--r--mcs/errors/cs1061-18.cs18
-rw-r--r--mcs/errors/cs4001-3.cs12
2 files changed, 0 insertions, 30 deletions
diff --git a/mcs/errors/cs1061-18.cs b/mcs/errors/cs1061-18.cs
deleted file mode 100644
index 1f201d5320b..00000000000
--- a/mcs/errors/cs1061-18.cs
+++ /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
index 9f4d82c66bb..00000000000
--- a/mcs/errors/cs4001-3.cs
+++ /dev/null
@@ -1,12 +0,0 @@
-// CS4001: Cannot await `void' expression
-// Line: 10
-
-using System;
-
-class A
-{
- static async void Test ()
- {
- await Console.WriteLine;
- }
-}