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-04-06 Jb Evain <jbevain@novell.com>
[mcs.git]
/
errors
/
gcs1770.cs
blob
e73ead0d3ee921cee051d7d72323ad4a809ea5bc
1
// CS1770: The expression being assigned to nullable optional parameter `d' must be default value
2
// Line: 8
3
4
using
System
;
5
6
class
C
7
{
8
public static void
Foo
(
DateTime
?
d
=
new
DateTime
())
9
{
10
}
11
}