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-3.cs
blob
46defe582d88774905a5c8812a21dc2be795bd06
1
// CS1593: Delegate `System.Func<int,int>' does not take `2' arguments
2
// Line: 11
3
4
5
using
System
;
6
7
class
C
8
{
9
static void
Main
(
string
[]
args
)
10
{
11
M
((
x
,
y
) =>
2
);
12
}
13
14
static void
M
(
Func
<
int
,
int
>
a
)
15
{
16
}
17
}