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-06-21 Atsushi Enomoto <atsushi@ximian.com>
[mcs.git]
/
errors
/
cs0019-11.cs
blob
8c08f74372c5d54117c91e59ccfdc3002ae81453
1
// cs0019-11.cs: 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
}