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-07-20 Jb Evain <jbevain@novell.com>
[mcs.git]
/
errors
/
cs1737.cs
blob
50877f9e8ba30e65086abc293eb32c54c5df6a13
1
// CS1737: Optional parameter cannot precede required parameters
2
// Line: 6
3
4
class
C
5
{
6
public static void
Test
(
byte
a
=
1
,
int
u
)
7
{
8
}
9
}