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
resync
[mcs.git]
/
errors
/
cs0257.cs
blob
74b8b322aa20ae0522ec03ed7e36399a15d9d6a5
1
// cs0257.cs: An __arglist parameter must be the last parameter in a formal parameter list
2
// Line: 5
3
class
Test
4
{
5
void
Foo
(
__arglist
,
bool
b
) {}
6
}