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 #1821 from iainx/replace-getline
[mono-project.git]
/
mcs
/
errors
/
cs0019-67.cs
blob
73d49c4837b91b096b329ef2d5c3ae9ad7839ca1
1
// CS0019: Operator `+=' cannot be applied to operands of type `dynamic' and `anonymous method'
2
// Line: 9
3
4
class
MainClass
5
{
6
public static void
Main
()
7
{
8
dynamic
d
=
null
;
9
d
+=
delegate
{};
10
}
11
}