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
Fix LLVM linker flags for 6.0.
[mono-project.git]
/
mcs
/
tests
/
gtest-469.cs
blob
d7b293e75d5aa79e04f5354cdc3d8905686b72f4
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
public static int
Main
()
15
{
16
var
foo
=
new
Foo
<
string
,
Bar
> (
new
Bar
());
17
return
0
;
18
}
19
}