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
2009-10-20 Jb Evain <jbevain@novell.com>
[mcs.git]
/
tests
/
gtest-102.cs
blob
9b75103186161cd9d0526212460afb1f261c060c
1
using
System
;
2
3
class
A
<
T
>
4
where T
:
IComparable
5
{
6
}
7
8
class
B
<
U
,
V
>
9
where U
:
IComparable
10
where V
:
A
<
U
>
11
{
12
}
13
14
class
Driver
15
{
16
public static void
Main
()
17
{
18
A
<
int
>
a_int
;
19
B
<
int
,
A
<
int
>>
b_stuff
;
20
}
21
}