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
update readme (#21797)
[mono-project.git]
/
mcs
/
tests
/
test-anon-45.cs
blob
3c57a3b697a2509c4caa925c4b91e337e9b40a20
1
delegate void
TestFunc
(
int
val
);
2
3
class
A
4
{
5
public
A
(
TestFunc 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
public static int
Main
()
17
{
18
return
i
;
19
}
20
}