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
2010-04-13 Sebastien Pouliot <sebastien@ximian.com>
[mono-project.git]
/
mcs
/
tests
/
test-142.cs
blob
686283b0aaf220e206884dd085aaecc267276e3d
1
using
System
;
2
3
public class
TestClass
:
TestBaseClass
{
4
5
public
TestClass
(
EventHandler hndlr
) :
base
()
6
{
7
Blah
+=
hndlr
;
8
}
9
10
public static int
Main
()
11
{
12
return
0
;
13
}
14
}
15
16
public class
TestBaseClass
{
17
18
public event
EventHandler Blah
;
19
20
}