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
Reenable AOT, it wasn't enabled on the x86 buildbot anyway.
[mcs.git]
/
tests
/
test-anon-30.cs
blob
7cb601d7599c3f28ed078e9c7ae6f89b2d3db0b7
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
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
}