"disable_omit_fp" can now be included in MONO_DEBUG
[mono-project.git] / mcs / errors / cs0528-2.cs
blob473c09cb6c4a4cee5f70af7c5e7ce968b9d61db4
1 // CS0528: `System.IComparable' is already listed in interface list
2 // Line: 6
4 using System;
6 public interface IX: IComparable, IComparable {
7 int CompareTo (object obj);