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
/
cs1502-16.cs
blob
052d26e1248f65f1b1195cc9da34810144ff3f81
1
// CS1502: The best overloaded method match for `C.Foo(dynamic)' has some invalid arguments
2
// Line: 13
3
4
static class
C
5
{
6
public static void
Foo
(
dynamic
d
)
7
{
8
}
9
10
static void
Main
()
11
{
12
dynamic
d
=
null
;
13
Foo
(
ref
d
);
14
}
15
}