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-21 Atsushi Enomoto <atsushi@ximian.com>
[mcs.git]
/
errors
/
cs1661.cs
blob
f31dced91b59aba4c5aae62631cff55ef4abe6b3
1
// CS1661: Cannot convert `anonymous method' to delegate type `D' since there is a parameter mismatch
2
// Line: 9
3
4
delegate void
D
(
int
x
);
5
6
class
X
{
7
static void
Main
()
8
{
9
D d2
=
delegate
(
ref int
x
) {};
10
}
11
}