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
2010-02-20 Zoltan Varga <vargaz@gmail.com>
[mcs.git]
/
tests
/
gtest-222.cs
blob
f7a8c89666a5c9837420cbec3905da1ef04bc7f7
1
interface
IFoo
{}
2
interface
IBar
:
IFoo
{}
3
4
class
Mona
<
T
>
where T
:
IFoo
{}
5
6
class
Test
7
{
8
public
Mona
<
K
>
GetMona
<
K
> ()
where K
:
IBar
9
{
10
return new
Mona
<
K
> ();
11
}
12
13
public static void
Main
() {}
14
}
15
16