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
2007-03-19 Chris Toshok <toshok@ximian.com>
[mono-project.git]
/
mcs
/
errors
/
gcs0309-6.cs
blob
2b932584751ac4b2c8f63de9617fe43a97065de0
1
// CS0309: The type `B<int>' must be convertible to `D<B<int>>' in order to use it as parameter `X' in the generic type or method `C<X>'
2
// Line: 3
3
class
A
:
C
<
B
<
int
>> {}
4
class
B
<
X
> {}
5
interface
C
<
X
>
where X
:
D
<
X
> {}
6
interface
D
<
X
> {}