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
/
dcs1593.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
}