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
add comment
[mcs.git]
/
tests
/
test-509.cs
blob
3318538eab4f6ca57a7950937052fcbd0372beb4
1
public delegate void
DelegateHandler
();
2
3
public interface
EventInterface
4
{
5
event
DelegateHandler OnEvent
;
6
}
7
8
public class
BaseClass
9
{
10
public event
DelegateHandler OnEvent
;
11
}
12
13
public class
ExtendingClass
:
BaseClass
,
EventInterface
14
{
15
public static void
Main
()
16
{
17
}
18
}