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
use MOONLIGHT symbol
[mcs.git]
/
errors
/
gcs0019-7.cs
blob
e583c04aaad977c5aa3bd7d382081a06238d0c5a
1
// CS0019: Operator `??' cannot be applied to operands of type `null' and `anonymous method'
2
// Line: 8
3
4
delegate void
D
();
5
6
class
F
7
{
8
D d
=
null
??
delegate
{ }
;
9
}