2004-02-16 Marek Safar <marek.safar@seznam.cz>
[mono.git] / mcs / errors / cs3005-19.cs
1 // cs3005.cs: Identifier 'II.compareto()' differing only in case is not CLS-compliant
2 // Line: 10
3
4 [assembly:System.CLSCompliant(true)]
5
6 public interface I {
7 }
8
9 public interface II: I, System.IComparable {
10         bool compareto();
11 }