summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0528-2.cs
blob: 473c09cb6c4a4cee5f70af7c5e7ce968b9d61db4 (plain)
1
2
3
4
5
6
7
8
// CS0528: `System.IComparable' is already listed in interface list
// Line: 6

using System;

public interface IX: IComparable, IComparable {
    int CompareTo (object obj);
}