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
Remove useless ip += from MINT_JMP, it is assigned later. (#19217)
[mono-project.git]
/
mcs
/
errors
/
cs1501.cs
blob
54c315095b904c929e6c90ffff46ee258ec9108e
1
// CS1501: No overload for method `this' takes `2' arguments
2
// Line : 10
3
4
class
C
5
{
6
public bool this
[
int
i
]
{ get { return false; }
set
{} }
7
8
void
Foo
()
9
{
C c
=
new
C
();
10
c
[
0
,
0
] =
null
;
11
}
12
}