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
Make StringComparer.Create throw ArgumentNullException (#26570)
[mono-project.git]
/
mcs
/
errors
/
cs0019-71.cs
blob
6deead2af8013b2ee4aa4a16da098d7558f8ea79
1
// CS0019: Operator `==' cannot be applied to operands of type `External' and `int'
2
// Line: 11
3
// Compiler options: -r:CS0019-71-lib.dll
4
5
class
X
6
{
7
public static void
Main
()
8
{
9
var
t1
=
new
External
();
10
int
t2
=
0
;
11
bool
b
=
t1
==
t2
;
12
}
13
}