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
Fixes the mono/tests/gc-graystack-stress test on Windows x64
[mono-project.git]
/
mcs
/
errors
/
cs1503-10.cs
blob
7d2afbecb7ff5e15ca0ed4669825e47ed856949b
1
// CS1503: Argument `#1' cannot convert `System.RuntimeArgumentHandle' expression to type `__arglist'
2
// Line: 10
3
4
using
System
;
5
6
class
C
7
{
8
void
Foo
(
__arglist
)
9
{
10
InstanceArgList
(
__arglist
);
11
}
12
13
int
InstanceArgList
(
__arglist
)
14
{
15
return
54
;
16
}
17
}