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
[metadata] Use MONO_PROFILER_API on MonoClass getters in checked builds (#20440)
[mono-project.git]
/
mcs
/
errors
/
cs0019-5.cs
blob
24451df25831b8ef24f17aa98ad9158709de80fa
1
// CS0019: 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
}