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
tag rc1
[mcs.git]
/
errors
/
cs1065.cs
blob
68f9cd260eea073e170b5ee2e24d8737d0f27c0a
1
// CS1065: Optional parameter is not valid in this context
2
// Line: 10
3
4
delegate void
D
(
int
i
);
5
6
public class
C
7
{
8
public static void
Main
()
9
{
10
D d
=
delegate
(
int
i
=
9
)
{ }
;
11
}
12
}