repo.or.cz
/
mono-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
"disable_omit_fp" can now be included in MONO_DEBUG
[mono-project.git]
/
mcs
/
tests
/
gtest-lambda-28.cs
blob
92ca76b890d1b09fc55a75e84be530d442cad944
1
using
System
;
2
3
class
G
<
T
>
4
{
5
}
6
7
class
C
8
{
9
static
G
<
TResult
>
M
<
T
,
TResult
>(
G
<
T
>[]
arg
,
Func
<
G
<
T
>[],
TResult
>
func
)
10
{
11
return null
;
12
}
13
14
public static int
Main
()
15
{
16
G
<
int
>[]
tasks
=
new
G
<
int
>[
0
];
17
G
<
G
<
int
>[]>
r
=
M
(
tasks
,
l
=>
l
);
18
return
0
;
19
}
20
}