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-15 Jb Evain <jbevain@novell.com>
[mcs.git]
/
errors
/
cs1736-2.cs
blob
bd22ecfc49e54e0f874e7f08c05bc15562c15d20
1
// CS1763: The expression being assigned to optional parameter `c' must be a constant or default value
2
// Line: 10
3
4
struct
S
5
{
6
}
7
8
class
C
9
{
10
public static void
Test
(
C c
=
new
S
())
11
{
12
}
13
}