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
use MOONLIGHT symbol
[mcs.git]
/
errors
/
cs1066-4.cs
blob
024848b61f9b0f6391ce3bbcc9a3abf8fa5b1a5c
1
// CS1066: The default value specified for optional parameter `i' will never be used
2
// Line: 7
3
// Compiler options: -warnaserror -langversion:future
4
5
class
C
6
{
7
public static implicit operator
C
(
int
i
=
8
)
8
{
9
return null
;
10
}
11
}