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-11-18 Marek Safar <marek.safar@gmail.com>
[mcs.git]
/
errors
/
cs3005-22.cs
blob
45d2e88b18dce779ea7f607182aa23e2813936b0
1
// cs3005-22.cs: 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
}