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
/
cs0111-9.cs
blob
2a198440fdef88dd2e37c1a9ed39844588f93c7d
1
// CS0111: A member `C.this[int]' is already defined. Rename this member or use different parameter types
2
// Line: 6
3
4
class
C
5
{
6
bool this
[
int
i
]
{ get { return false; }
}
7
bool this
[
int
i
]
{ get { return true; }
}
8
}