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
2010-05-19 Jb Evain <jbevain@novell.com>
[mcs.git]
/
tests
/
gtest-104.cs
blob
e027bead6dfd0fff714d69a2686bfe78c01fe7f7
1
class
MainClass
2
{
3
class
Gen
<
T
>
4
{
5
public void
Test
()
6
{ }
7
}
8
9
class
Der
:
Gen
<
int
>
10
{
11
}
12
13
static void
Main
()
14
{
15
object
o
=
new
Der
();
16
Gen
<
int
>
b
= (
Gen
<
int
>)
o
;
17
b
.
Test
();
18
}
19
}
20