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
for "build" config, import corlib common sources at unix instead (#11989)
[mono-project.git]
/
mcs
/
errors
/
cs0190-2.cs
blob
ca9733de0fa48719fd9a651612f2e10bc21e116b
1
// CS0190: The __arglist construct is valid only within a variable argument method
2
// Line: 11
3
4
public class
Test
5
{
6
public static void
Foo
(
__arglist
)
7
{
8
System
.
RuntimeArgumentHandle o
;
9
{
10
System
.
Action a
=
delegate
() {
11
o
=
__arglist
;
12
};
13
14
a
();
15
}
16
}
17
18
public static void
Main
()
19
{
20
Foo
(
__arglist
());
21
}
22
}