Flush (work in progress)
[mono.git] / mcs / errors / gcs1503-2.cs
diff --git a/mcs/errors/gcs1503-2.cs b/mcs/errors/gcs1503-2.cs
deleted file mode 100644 (file)
index 24fa1e6..0000000
+++ /dev/null
@@ -1,22 +0,0 @@
-// CS1503: Argument `#2' cannot convert `method group' expression to type `System.Collections.Generic.Comparer<int>'
-// Line: 20
-
-using System;
-using System.Collections.Generic;
-
-public class C
-{
-       static void Foo<T>(T t, Comparer<T> tc)
-       {
-       }
-       
-       static int Compare (int a, int b)
-       {
-               return -1;
-       }
-       
-       public static void Main ()
-       {
-               Foo (1, Compare);
-       }
-}