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
Take stars out of types where they make more sense.
[mono-project.git]
/
mcs
/
tests
/
gtest-396.cs
blob
352bb1ac786bc4157a9b4afed1d73dc99be96f1a
1
using
System
;
2
3
public class
Test
4
{
5
public static void
Invoke
<
A
,
TR
>(
Func
<
A
,
Func
<
TR
>>
callee
,
A arg1
,
TR result
)
6
{
7
}
8
9
static
Func
<
int
>
Method
(
string
arg
)
10
{
11
return null
;
12
}
13
14
public static void
Main
()
15
{
16
Invoke
(
Method
,
"one"
,
1
);
17
}
18
}
19