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
/
cs0019-5.cs
blob
5b249560fbd66dcc8331312ff2b2a803cf9de261
1
// cs0019.cs: Operator `==' cannot be applied to operands of type `X' and `Y'
2
// Line : 13
3
4
class
X
{
5
}
6
7
class
Y
{
8
}
9
10
class
T
{
11
static void
Main
()
12
{
13
X x
=
new
X
();
14
Y y
=
new
Y
();
15
16
if
(
x
==
y
){
17
}
18
}
19
}