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.cs
blob
608a5a911ca3d8b23294c5e1ad18cebf4cb97bd9
1
// CS0102: The type `SampleClass' already contains a definition for `set_Item'
2
// Line: 6
3
4
public class
SampleClass
{
5
protected int
set_Item
;
6
public int this
[
int
index
]
{ set {}
}
7
}