repo.or.cz
/
mono-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[tuner] handle the case with multiple "preserve" attributes
[mono-project.git]
/
mcs
/
tests
/
gtest-295.cs
blob
45a6cb3d3fe842d9bc07357e7d533ba33d2e5ab6
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 { public static void Main () { object foo = new MyType<Base> (); }
}
13
}