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-372.cs
blob
0facd7cb84ce7f3ee198ae66136339c154fe7944
1
public class
TestClass
<
T
>
where T
:
class
2
{
3
public bool
Check
(
T x
,
T y
)
{ return x == y; }
4
}
5
6
public class
C
7
{
8
}
9
10
public class
TestClass2
<
T
>
where T
:
C
11
{
12
public bool
Check
(
T x
,
T y
)
{ return x == y; }
13
}
14
15
public class
X
16
{
17
static void
Main
()
18
{ }
19
}
20
21