New test.
[mono.git] / mcs / class / corlib / System.Collections.Generic / IComparer.cs
index babea54f12444ce116d56c0ace9f1343f3e67106..fafab15667f1d4ffbb25cf6e14e2086152965d30 100644 (file)
@@ -35,10 +35,8 @@ using System;
 using System.Runtime.InteropServices;
 
 namespace System.Collections.Generic {
-       [CLSCompliant(false)]
-       [ComVisible(false)]
        public interface IComparer<T> {
-               int Compare(T x, T y);
+               int Compare (T x, T y);
        }
 }
 #endif