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
[metadata] Use MONO_PROFILER_API on MonoClass getters in checked builds (#20440)
[mono-project.git]
/
mcs
/
errors
/
cs1503-9.cs
blob
a81cb9586b1a4f082a881d37ea46c23cf6acafb2
1
// CS1503: Argument `#1' cannot convert `__arglist' expression to type `object'
2
// Line: 14
3
4
using
System
;
5
6
class
Program
7
{
8
static void
Foo
(
object
o
)
9
{
10
}
11
12
static void
Main
()
13
{
14
Foo
(
__arglist
(
null
));
15
}
16
}