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
[Http]: Cosmetic, remove some dead code.
[mono-project.git]
/
mcs
/
errors
/
cs0019-11.cs
blob
f6027336d5cdb7ba6b8ac66a6696a10ef414ee85
1
// CS0019: Operator `&&' cannot be applied to operands of type `null' and `null'
2
// Line : 8
3
4
public class
C
5
{
6
public static void
Main
()
7
{
8
bool
l
= (
null
&&
null
);
9
}
10
}