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
Fix LLVM linker flags for 6.0.
[mono-project.git]
/
mcs
/
tests
/
test-536.cs
blob
e4a2e5e8126a2a612f786d59f0e86f3a7248cf19
1
public delegate void
FooHandler
();
2
3
public static class
Test
4
{
5
private static void
OnFooTest
()
6
{
7
}
8
9
public static event
FooHandler Foo
;
10
11
public static void
Main
()
12
{
13
FooHandler foo
=
delegate
{
14
Foo
+=
OnFooTest
;
15
};
16
}
17
}