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
2010-06-21 Atsushi Enomoto <atsushi@ximian.com>
[mcs.git]
/
errors
/
cs0190.cs
blob
9fa7bb9c810572a7c435c41a67d633dcb6b25cb3
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
}