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
/
gtest-anon-46.cs
blob
00767aa64b65e842cb81c667a86f4e4f51079d1b
1
using
System
;
2
3
public class
TheClass
4
{
5
static void
Foo
<
T
> (
T t
,
Func
<
T
,
T
>
f
)
6
{
7
Func
<
Func
<
T
>>
d
= () => {
8
if
(
t
!=
null
) {
9
return
() =>
f
(
t
);
10
}
11
12
return null
;
13
};
14
d
();
15
}
16
17
public static void
Main
()
18
{
19
Foo
(
1
,
null
);
20
}
21
}