repo.or.cz
/
mono-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Merge pull request #4926 from BrzVlad/fix-tls-v5
[mono-project.git]
/
mcs
/
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
}