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-anon-36.cs
blob
88de2c794f6122914bedbf8bc3026ce69269fcac
1
public class
Test
2
{
3
public static void
Main
()
4
{
5
new
Test
(
delegate
() {});
6
}
7
8
public
Test
(
TestMethod test
) {}
9
public
Test
(
TestMethod2 test2
) {}
10
}
11
12
public delegate void
TestMethod
();
13
public delegate void
TestMethod2
(
object
o
);