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-576.cs
blob
25bebda3e4388645440ac75fa42fd97eaac6c082
1
using
System
;
2
3
interface
IParam
<
U
>
where U
:
IParam
<
U
>
4
{
5
}
6
7
interface
IA
8
{
9
void
f
<
T2
> (
IParam
<
T2
>
p
)
where T2
:
A
,
IParam
<
T2
>;
10
}
11
12
class
A
:
IA
13
{
14
void
IA
.
f
<
T1
> (
IParam
<
T1
>
p
)
15
{
16
}
17
18
public static void
Main
()
19
{
20
new
A
();
21
}
22
}