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-30.cs
blob
0c83462d519953b7ea0a706a18ec4eb8cb2ce64d
1
class
X
{
2
public bool
eh
;
3
}
4
5
static class
Program
{
6
delegate void
D
(
X o
);
7
static event
D E
;
8
9
public static void
Main
()
10
{
11
bool
running
=
true
;
12
13
E
=
delegate
(
X o
) {
14
o
.
eh
=
false
;
15
running
=
false
;
16
};
17
18
running
=
true
;
19
20
}
21
}