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 #4202 from marek-safar/compression
[mono-project.git]
/
mcs
/
errors
/
cs0620.cs
blob
f55503d56c048875d22aba8e801daedffee82417
1
// CS0620: `PropertyClass.this[int]': indexer return type cannot be `void'
2
// Line: 5
3
4
class
PropertyClass
{
5
public void this
[
int
i
] {
6
set
{}
7
}
8
}