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
Update the reference assemblies we ship in mono.
[mono-project.git]
/
mcs
/
errors
/
cs1501-10.cs
blob
6969803066d5b8b75bfc05170b14013d6d639373
1
// CS1501: No overload for method `TestCall' takes `1' arguments
2
// Line: 13
3
4
class
C
5
{
6
static void
TestCall
(
byte
b
,
int
a
)
7
{
8
}
9
10
public static void
Main
()
11
{
12
dynamic
d
=
0
;
13
TestCall
(
d
);
14
}
15
}