repo.or.cz
/
mono-project
/
dkf.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
2009-02-10 Jeffrey Stedfast <fejj@novell.com>
[mono-project/dkf.git]
/
mcs
/
tests
/
gtest-348.cs
blob
c9996bd8413324323c43d372f8edc05ef9960e66
1
using
System
;
2
3
public class
Bar
<
U
>
where U
:
EventArgs
4
{
5
internal void
OnWorldDestroyed
()
6
{
7
}
8
}
9
10
public class
Baz
<
U
>
where U
:
Bar
<
EventArgs
>
11
{
12
public void
DestroyWorld
(
U bar
)
13
{
14
bar
.
OnWorldDestroyed
();
15
}
16
}
17
18
public class
Bling
19
{
20
public static void
Main
()
21
{
22
}
23
}