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