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
/
cs1066-3.cs
blob
84af75a05c1da70113ac144f1c07f187a8ba6ef4
1
// CS1066: The default value specified for optional parameter `x' will never be used
2
// Line: 12
3
// Compiler options: -warnaserror -langversion:future
4
5
interface
I
6
{
7
void
Method
(
int
i
);
8
}
9
10
class
C
:
I
11
{
12
void
I
.
Method
(
int
x
=
9
)
13
{
14
}
15
}