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
add comment
[mcs.git]
/
tests
/
test-336.cs
blob
a180d5f011dcc9e3de750e0db598f37e81147657
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
static void
Main
()
18
{
19
X x
=
new
X
(
Test
);
20
}
21
}