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
for "build" config, import corlib common sources at unix instead (#11989)
[mono-project.git]
/
mcs
/
errors
/
cs0834-2.cs
blob
32dbd9c5f9487d945e04d9b023da5cbab3b1915d
1
// CS0834: A lambda expression with statement body cannot be converted to an expresion tree
2
// Line: 12
3
4
using
System
.
Linq
.
Expressions
;
5
6
class
C
7
{
8
delegate void
D
();
9
10
public void
Foo
()
11
{
12
Expression
<
D
>
e
= () =>
{ }
;
13
}
14
}