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-03-07 Rodrigo Kumpera <rkumpera@novell.com>
[mcs.git]
/
errors
/
cs1066-2.cs
blob
06135d384da1ae64870f62d6a277d6868067da3d
1
// CS1066: The default value specified for optional parameter `s' will never be used
2
// Line: 9
3
// Compiler options: -warnaserror -langversion:future
4
5
public partial class
C
6
{
7
partial void
Test
(
int
u
,
string
s
);
8
9
partial void
Test
(
int
u
,
string
s
=
"optional"
)
10
{
11
}
12
}