* Form.cs: Make the fix for #80775 windows-only (fixes #81957).
[mono.git] / mcs / errors / cs0528-2.cs
1 // cs0528-2.cs: `System.IComparable' is already listed in interface list
2 // Line: 6
3
4 using System;
5
6 public interface IX: IComparable, IComparable {
7     int CompareTo (object obj);
8 }