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-20.cs
blob
a9151283d194a1243383a98ea3d85ec2d9e2b424
1
// cs3005-20.cs: Identifier `I.BLAH.get' differing only in case is not CLS-compliant
2
// Line: 15
3
// Compiler options: -warnaserror
4
5
using
System
.
Runtime
.
CompilerServices
;
6
using
System
;
7
8
[
assembly
:
CLSCompliant
(
true
)]
9
10
public interface
I
{
11
[
IndexerName
(
"blah"
)]
12
int this
[
int
a
] {
13
get
;
14
}
15
16
int
BLAH { get; }
17
}