2004-10-01 John Luke <john.luke@gmail.com>
[mono.git] / mcs / errors / cs3005-19.cs
1 // cs3005.cs: Identifier 'II.compareto()' differing only in case is not CLS-compliant
2 // Line: 11
3 // Compiler options: -t:library
4
5 [assembly:System.CLSCompliant(true)]
6
7 public interface I {
8 }
9
10 public interface II: I, System.IComparable {
11         bool compareto();
12 }