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
[cominterop] Default to [in] parameter direction when not specified explicitly.
[mono-project.git]
/
mcs
/
errors
/
cs0115-2.cs
blob
a7f16152a9a7a1a1455efdc1c95a61ea0cf486b1
1
// CS0115: `X.this[int]' is marked as an override but no suitable indexer found to override
2
// Line: 5
3
4
class
X
{
5
public override long this
[
int
i
] {
6
set
{ }
7
}
8
}