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
[interp] Reduce computation under calc_section mutex
[mono-project.git]
/
mcs
/
tests
/
test-anon-175.cs
blob
8dd625a3832a7818ebff7fac5d04a85acebf2e82
1
delegate int
F
(
int
i
);
2
class
Foo
{
3
static int
i
;
4
static void
Main
()
5
{
6
i
=
0
;
7
F f
=
delegate
(
int
i
)
{ return i; }
;
8
}
9
}