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
Remove useless ip += from MINT_JMP, it is assigned later. (#19217)
[mono-project.git]
/
mcs
/
errors
/
cs0314.cs
blob
b2a9f85fecda900276fb45caa60176b8cba24503
1
// CS0314: The type `U' cannot be used as type parameter `T' in the generic type or method `A<T>'. There is no boxing or type parameter conversion from `U' to `System.IComparable'
2
// Line: 13
3
4
using
System
;
5
6
class
A
<
T
>
7
where T
:
IComparable
8
{
9
}
10
11
class
B
<
U
,
V
>
12
where V
:
A
<
U
>
13
{
14
}
15
16
class
Driver
17
{
18
public static void
Main
()
19
{
20
}
21
}