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
[sdks] Fix README.md
[mono-project.git]
/
mcs
/
tests
/
test-anon-31.cs
blob
c63c204c000002d67afa1a90065c09ce543aa6f8
1
using
System
;
2
using
System
.
Reflection
;
3
4
class
X
{
5
delegate object
test
(
MethodInfo x
);
6
7
public static void
Main
()
8
{
9
DoCall
(
delegate
(
MethodInfo
from
) {
10
return from
.
Invoke
(
null
,
new object
[]
{ from }
);
11
});
12
}
13
14
static void
DoCall
(
test t
)
15
{
16
}
17
}