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
Merge pull request #1861 from saper/home-override
[mono-project.git]
/
mcs
/
tests
/
gtest-594.cs
blob
0c09ef892e539c8b34e661df440834f4fa5b1cd9
1
using
System
;
2
3
public interface
IFoo
<
U
>
4
{
5
void
Foo
<
T
> ()
where T
:
C
;
6
}
7
8
public class
C
:
IA
9
{
10
}
11
12
public interface
IA
13
{
14
}
15
16
class
Y
:
IFoo
<
int
>
17
{
18
public void
Foo
<
T
> ()
where T
:
C
19
{
20
}
21
}
22
23
class
X
24
{
25
public static void
Main
()
26
{
27
new
Y
();
28
}
29
}