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-04-06 Jb Evain <jbevain@novell.com>
[mcs.git]
/
errors
/
dcs1502.cs
blob
dd9d49d59b1e3c3c8ab87b2d667a248594f1dbc4
1
// CS1502: The best overloaded method match for `C.TestCall(int, string)' has some invalid arguments
2
// Line: 13
3
4
class
C
5
{
6
static void
TestCall
(
int
i
,
string
s
)
7
{
8
}
9
10
public static void
Main
()
11
{
12
dynamic
d
=
0
;
13
TestCall
(
d
,
1
);
14
}
15
}