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
2009-11-17 Marek Safar <marek.safar@gmail.com>
[mcs.git]
/
errors
/
cs0019-17.cs
blob
5ad4d3d2641ee446440ae055046b2ece373e6f6b
1
// CS0019: Operator `==' cannot be applied to operands of type `int' and `string'
2
// Line: 8
3
4
class
S
5
{
6
static int
i
;
7
8
static bool
Foo
()
9
{
10
return
i
==
""
;
11
}
12
}