repo.or.cz
/
mcs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
2010-06-21 Atsushi Enomoto <atsushi@ximian.com>
[mcs.git]
/
errors
/
gcs0834-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
}