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
/
cs1763.cs
blob
f6ea5a67366c5b28d0d90c04960f55003658cc30
1
// CS1763: Optional parameter `o' of type `object' can only be initialized with `null'
2
// Line: 6
3
// Compiler options: -langversion:future
4
5
class
C
6
{
7
public static void
Test
(
object
o
=
9
)
8
{
9
}
10
}