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
Fix bug #566087.
[mcs.git]
/
tests
/
test-anon-79.cs
blob
990160fcc16c450f303513e437751e15b0b92633
1
class
Test
2
{
3
delegate void
D
();
4
event
D E
;
5
D proxy
;
6
7
event
D Changed
8
{
9
add
10
{
11
if
(
proxy
==
null
)
12
proxy
=
delegate
()
{ Foo (); }
;
13
}
14
remove
15
{
16
}
17
}
18
19
void
Foo
()
20
{
21
}
22
23
public static void
Main
()
24
{
25
}
26
}