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-01-24 Zoltan Varga <vargaz@gmail.com>
[mcs.git]
/
tests
/
gtest-295.cs
blob
09a98cd338743b913a0248667b1cbe5a14c75fa7
1
namespace
Test
{
2
class
Cache
<
T
>
where T
:
class
{
3
}
4
5
class
Base
{
6
}
7
8
class
MyType
<
T
>
where T
:
Base
{
9
Cache
<
T
>
_cache
;
// CS0452
10
}
11
12
class
Foo { static void Main () { object foo = new MyType<Base> (); }
}
13
}