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
2010-04-06 Jb Evain <jbevain@novell.com>
[mcs.git]
/
errors
/
cs3005-22.cs
blob
40d0eea603fb55f27bd06fe80cf16efa4618a6d3
1
// CS3005: Identifier `X.Index' differing only in case is not CLS-compliant
2
// Line: 8
3
// Compiler options: -warnaserror
4
5
[
assembly
:
System
.
CLSCompliant
(
true
)]
6
7
public class
X
{
8
public int
index { get { return 0; }
}
9
public int
Index { set {}
}
10
11
}