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
/
cs1678.cs
blob
dfd5352859a61c9c2f774185729c2aa38f3fa264
1
// CS1678: Parameter `1' is declared as type `long' but should be `int'
2
// Line: 9
3
4
delegate void
D
(
int
x
);
5
6
class
X
{
7
static void
Main
()
8
{
9
D d2
=
delegate
(
long
x
) {};
10
}
11
}