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
/
cs0102-15.cs
blob
d11e3ec0a790108d284acdbc613681792692778c
1
// CS0102: The type `C' already contains a definition for `Item'
2
// Line: 7
3
4
class
C
5
{
6
bool this
[
int
i
]
{ get { return false; }
}
7
bool
Item
(
int
i
)
{ return false; }
8
}