repo.or.cz
/
mcs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
2009-10-20 Jb Evain <jbevain@novell.com>
[mcs.git]
/
tests
/
test-579.cs
blob
dd32486d053158f624d4634768b761bde8bb55df
1
using
System
;
2
using
System
.
Reflection
;
3
4
class
X
{
5
delegate object
test
(
MethodInfo x
);
6
7
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
}