repo.or.cz
/
mono-project
/
dkf.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
2009-02-10 Jeffrey Stedfast <fejj@novell.com>
[mono-project/dkf.git]
/
mcs
/
tests
/
test-anon-84.cs
blob
666700272e12ed1f655bdfdb9c97a071eae6c297
1
using
System
;
2
3
public delegate
C
D
(
int
i
);
4
5
public class
C
6
{
7
private readonly
D field
=
delegate
{
8
int
x
=
0
;
9
return null
;
10
};
11
12
public
C
()
13
{
14
}
15
16
public
C
(
D onMissing
)
17
{
18
}
19
20
public static int
Main
()
21
{
22
new
C
().
field
(
3
);
23
return
0
;
24
}
25
}