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-01-24 Zoltan Varga <vargaz@gmail.com>
[mcs.git]
/
tests
/
gtest-298.cs
blob
a0aa6ed622729eb34ca0988102b2fbc01199acc8
1
delegate void
TestFunc
<
T
> (
T val
);
2
3
class
A
4
{
5
public
A
(
TestFunc
<
int
>
func
)
6
{
7
func
(
0
);
8
}
9
}
10
11
class
TestClass
12
{
13
static int
i
=
1
;
14
static readonly
A a
=
new
A
(
delegate
(
int
a
)
{ i = a; }
);
15
16
static int
Main
()
17
{
18
return
i
;
19
}
20
}