MA0094 - A class that provides CompareTo(T) should implement IComparable<T> class Test // non-compliant { public int CompareTo(Test other) => throw null; } class Test : IComparable<T> // ok { public int CompareTo(Test other) => throw null; }