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
Reenable AOT, it wasn't enabled on the x86 buildbot anyway.
[mcs.git]
/
tests
/
test-210.cs
blob
76214f5f54f113873ffc165531b0bb4c55afa104
1
delegate void
FooHandler
();
2
3
class
X
4
{
5
public static void
foo
()
6
{ }
7
8
public static void
Main
()
9
{
10
object
o
=
new
FooHandler
(
foo
);
11
((
FooHandler
)
o
) ();
12
}
13
}