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-01-31 Zoltan Varga <vargaz@gmail.com>
[mcs.git]
/
errors
/
cs0019-31.cs
blob
af9622e62c989969366ef999d2fae6915ae70b2f
1
// CS0019: Operator `==' cannot be applied to operands of type `S' and `S'
2
// Line: 14
3
4
struct
S
5
{
6
}
7
8
class
C
9
{
10
public static void
Main
()
11
{
12
S s
;
13
S x
;
14
bool
b
=
s
==
x
;
15
}
16
}