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
[mono/tests] Fix out of tree build.
[mono-project.git]
/
mcs
/
tests
/
gtest-622.cs
blob
ab7a5798417a3c2253f385de18e61257d005db38
1
interface
IX
<
TI
>
2
{
3
void
M
<
TO
> ()
where TO
:
TI
;
4
}
5
6
interface
IY
7
{
8
}
9
10
class
CY
:
IY
11
{
12
}
13
14
class
A
:
IX
<
IY
>
15
{
16
public void
M
<
TO
> ()
where TO
:
IY
17
{
18
}
19
20
public static void
Main
()
21
{
22
var
a
=
new
A
();
23
a
.
M
<
CY
> ();
24
}
25
}