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
2009-03-11 Zoltan Varga <vargaz@gmail.com>
[mcs.git]
/
tests
/
gtest-218.cs
blob
73b6cc1baf88fdf6ab7abaf27c06f75db0668fa6
1
public interface
IFoo
<
T
>
where T
:
IFoo
<
T
>
{ }
2
public interface
IBaz
<
T
>
where T
:
IFoo
<
T
>
{ }
3
4
class
Foo
:
IFoo
<
Foo
>
5
{ }
6
7
class
X
8
{
9
static void
Main
()
10
{ }
11
}