repo.or.cz
/
mcs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
2009-02-15 Jonathan Chambers <joncham@gmail.com>
[mcs.git]
/
errors
/
cs0190.cs
blob
f58ae3799f8e1b41abc5f2cd6d853560dc9cd5ad
1
// cs0190.cs: The __arglist construct is valid only within a variable argument method
2
// Line: 8
3
4
public class
Test
5
{
6
public static void
Foo
()
7
{
8
object
o
=
__arglist
;
9
}
10
}