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
Fix on-demand initialization race conditions [native-library.c]. (#18162)
[mono-project.git]
/
mcs
/
errors
/
cs1503-11.cs
blob
2961fd4bf23aa5ec6b30cda4856d4fcf1ea61f89
1
// CS1503: Argument `#1' cannot convert `null' expression to type `__arglist'
2
// Line: 8
3
4
class
C
5
{
6
void
Foo
()
7
{
8
InstanceArgList
(
null
);
9
}
10
11
int
InstanceArgList
(
__arglist
)
12
{
13
return
54
;
14
}
15
}