repo.or.cz
/
mono-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[bcl] Update BCL Linked Size
[mono-project.git]
/
mcs
/
errors
/
cs1066-2.cs
blob
3a5393d22a1e6ea3f94bec4fc7cb1be2d52b0e9c
1
// CS1066: The default value specified for optional parameter `s' will never be used
2
// Line: 9
3
// Compiler options: -warnaserror
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
}