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-04-06 Jb Evain <jbevain@novell.com>
[mcs.git]
/
errors
/
cs0231-3.cs
blob
e11b0bc46d17880edf1d738a37cd294e501ae10d
1
// cs0231-3.cs: A params parameter must be the last parameter in a formal parameter list
2
// Line: 5
3
class
Test
4
{
5
void
Foo
(
int
i
,
params object
[]
o
,
bool
b
) {}
6
}
7