repo.or.cz
/
mcs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
2010-06-14 Atsushi Enomoto <atsushi@ximian.com>
[mcs.git]
/
errors
/
cs1678.cs
blob
fec06bfd395de7ea15d65bf6f6c7066d8b37fffc
1
// cs1678.cs: Parameter `1' is declared as type `long' but should be `int'
2
// Line: 11
3
//
4
// Signature mismatch.
5
//
6
delegate void
D
(
int
x
);
7
8
class
X
{
9
static void
Main
()
10
{
11
D d2
=
delegate
(
long
x
) {};
12
}
13
}