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
2010-06-21 Atsushi Enomoto <atsushi@ximian.com>
[mcs.git]
/
errors
/
gcs0019-2.cs
blob
e36bed4fb0acbcc7c0edab6842395504c62231ac
1
// CS0019: Operator `==' cannot be applied to operands of type `T' and `T'
2
// Line: 5
3
public class
TestClass
<
T
>
4
{
5
public bool
Check
(
T x
,
T y
)
{ return x == y; }
6
}
7
8
public class
X
9
{
10
static void
Main
()
11
{ }
12
}
13
14