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
[interp] Fall back to old implementation when calling on proxy
[mono-project.git]
/
mcs
/
errors
/
cs0019-57.cs
blob
ee648e6cef150eb2e90d8f62cfcbccdb14df0141
1
// CS0019: Operator `==' cannot be applied to operands of type `T' and `U'
2
// Line: 12
3
4
interface
I
5
{
6
}
7
8
class
Program
9
{
10
bool
Test
<
T
,
U
> (
T t
,
U u
)
where T
:
I where U
:
I
11
{
12
return
t
==
u
;
13
}
14
}