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
retag
[mcs.git]
/
errors
/
gcs0019-14.cs
blob
28350e7d46b0ba83ae2b4270c7c8886916cde6cb
1
// CS0019: Operator `==' cannot be applied to operands of type `A.D' and `anonymous method'
2
// Line: 11
3
4
class
A
5
{
6
delegate void
D
();
7
8
static void
Main
()
9
{
10
D d
=
null
;
11
bool
r
=
d
== (() =>
{ }
);
12
}
13
}