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
/
cs0542-5.cs
blob
9c5e044444e126343952d37ca5b3309655fb785f
1
// CS0542: `Item.this[int]': member names cannot be the same as their enclosing type
2
// Line: 6
3
4
class
Item
5
{
6
public int this
[
int
i
] {
7
set
{}
8
}
9
}
10