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
[mono/tests] Fix out of tree build.
[mono-project.git]
/
mcs
/
tests
/
test-336.cs
blob
ed2c6f337f7e3e8c4e9165dfcfeefe58db1a9314
1
using
System
;
2
3
public delegate void
Foo
();
4
public delegate void
Bar
(
int
x
);
5
6
class
X
7
{
8
public
X
(
Foo foo
)
9
{ }
10
11
public
X
(
Bar bar
)
12
{ }
13
14
static void
Test
()
15
{ }
16
17
public static void
Main
()
18
{
19
X x
=
new
X
(
Test
);
20
}
21
}