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
Merge pull request #3806 from BrzVlad/feature-parallel-gc-final
[mono-project.git]
/
mcs
/
errors
/
cs0019-52.cs
blob
06da5a8b8b592bcbf9f5647edd68e9a0e7fd21b2
1
// CS0019: Operator `??' cannot be applied to operands of type `null' and `bool'
2
// Line: 8
3
4
class
Program
5
{
6
static void
Main
()
7
{
8
object
s
=
null
??
true
;
9
}
10
}