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-06-21 Atsushi Enomoto <atsushi@ximian.com>
[mcs.git]
/
tests
/
gtest-469.cs
blob
11f9c5ccd139dac43596c5236c21843ce360e7a2
1
interface
I
<
T
>
2
{
3
}
4
5
class
Foo
<
T1
,
T2
>
where T2
:
I
<
I
<
T1
>>
6
{
7
public
Foo
(
T2 t2
)
8
{
9
}
10
}
11
12
class
Bar
:
I
<
I
<
string
>>
13
{
14
static int
Main
()
15
{
16
var
foo
=
new
Foo
<
string
,
Bar
> (
new
Bar
());
17
return
0
;
18
}
19
}