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
2009-02-27 Jb Evain <jbevain@novell.com>
[mcs.git]
/
errors
/
cs0620-2.cs
blob
5898b6395c4dc8372717a2fddd6b82bdd1545c4d
1
// CS0620: `Indexer.this[int]': indexer return type cannot be `void'
2
// Line: 5
3
4
interface
Indexer
{
5
void this
[
int
i
]
{ set; }
6
}