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
2007-05-25 Jonathan Chambers <joncham@gmail.com>
[mcs.git]
/
tests
/
gtest-260.cs
blob
e94f3f46efa22908e0c1b5e93ea51c6a7585d8c3
1
class
A
<
T
>
where T
:
class
{}
2
class
B
<
T
> :
A
<
T
>
where T
:
class
{}
3
class
Test
{
4
internal static
A
<
Test
>
x
=
new
B
<
Test
> ();
5
static void
Main
()
{ }
6
}