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
/
cs1593-4.cs
blob
989ea2de6b7794ebb7ebb449c1e032a649b27d5d
1
// CS1593: Delegate `System.Action<int>' does not take `2' arguments
2
// Line: 13
3
4
using
System
;
5
6
public class
Test
7
{
8
public static void
Main
()
9
{
10
Action
<
int
>
a
= (
i
) => {};
11
12
dynamic
d
=
1
;
13
a
(
d
,
true
);
14
}
15
}