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-04-01 Jb Evain <jbevain@novell.com>
[mcs.git]
/
errors
/
gcs0835.cs
blob
3fe1ac2ab34f6bb363f2d106fa21feb92bc73988
1
// CS0835: Cannot convert `lambda expression' to an expression tree of non-delegate type `string'
2
// Line: 10
3
4
using
System
.
Linq
.
Expressions
;
5
6
class
C
7
{
8
public void
Foo
()
9
{
10
Expression
<
string
>
e
= () =>
"a"
;
11
}
12
}