repo.or.cz
/
mcs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
2009-07-20 Jb Evain <jbevain@novell.com>
[mcs.git]
/
errors
/
cs3005-19.cs
blob
95cbc77bbe3d6cb7eb71d8f3488ada58a2a66074
1
// cs3005-19.cs: 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
}