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 #4202 from marek-safar/compression
[mono-project.git]
/
mcs
/
errors
/
cs1977.cs
blob
a3350420f3c1bbd71ea9d6f5aa7d69b61ee2369c
1
// CS1977: An anonymous method or lambda expression cannot be used as an argument of dynamic operation. Consider using a cast
2
// Line: 9
3
4
class
C
5
{
6
public static void
Main
()
7
{
8
dynamic
d
=
null
;
9
d
(
delegate
{});
10
}
11
}