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

cs0528-2.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2f5c66b45599e9ddccfb61745c2cf9baf7b5c8fa (plain)
1
2
3
4
5
6
7
8
// cs0528:  `IComparable' is already listed in interface list
// Line: 6

using System;

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