summaryrefslogtreecommitdiff
path: root/mcs/errors/cs3005-19.cs
blob: cc0bbe5e68b230b3f106704b548dc9a68ed28682 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// CS3005: Identifier `II.compareto()' differing only in case is not CLS-compliant
// Line: 11
// Compiler options: -t:library -warnaserror


[assembly:System.CLSCompliant(true)]

public interface I {
}

public interface II: I, System.IComparable {
        bool compareto();
}