[Mono.Unix] Fix crasher in StringToHeap (#5639)
[mono.git] / mcs / errors / cs3005-19.cs
1 // CS3005: Identifier `II.compareto()' differing only in case is not CLS-compliant
2 // Line: 11
3 // Compiler options: -t:library -warnaserror
4
5
6 [assembly:System.CLSCompliant(true)]
7
8 public interface I {
9 }
10
11 public interface II: I, System.IComparable {
12         bool compareto();
13 }