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
for "build" config, import corlib common sources at unix instead (#11989)
[mono-project.git]
/
mcs
/
errors
/
cs0019-25.cs
blob
33a06bef28a7885aa8260abdf8846d8268f76ae0
1
// CS0019: Operator `==' cannot be applied to operands of type `Foo' and `null'
2
// Line: 14
3
4
struct
Foo
5
{
6
}
7
8
public class
Test
9
{
10
static
Foo ctx
;
11
12
public static void
Main
()
13
{
14
if
(
ctx
==
null
)
15
return
;
16
}
17
}