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-12.cs
blob
2055434b92bc66157cbdec90b79fab07591e800a
1
// CS1501: No overload for method `this' takes `1' arguments
2
// Line: 13
3
4
public class
Blah
5
{
6
int this
[
short
id
,
string
v
] {
7
set
{}
8
}
9
10
public void
Test
()
11
{
12
dynamic
d
=
1
;
13
this
[
d
] =
1
;
14
}
15
}