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 #4926 from BrzVlad/fix-tls-v5
[mono-project.git]
/
mcs
/
errors
/
cs0019-65.cs
blob
f1e8a50d00257dda3807fcbdb6a47d97539f3680
1
// CS0019: Operator `==' cannot be applied to operands of type `dynamic' and `anonymous method'
2
// Line: 9
3
4
class
C
5
{
6
static void
Main
()
7
{
8
dynamic
x
=
null
;
9
var
y
=
x
== (() =>
1
);
10
}
11
}