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
/
gcs1946.cs
blob
f53130fad09c65403b2b7e0393de73b7797a7000
1
// CS1946: An anonymous method cannot be converted to an expression tree
2
// Line: 11
3
4
using
System
;
5
using
System
.
Linq
.
Expressions
;
6
7
class
C
8
{
9
delegate string
D
();
10
11
public static void
Main
()
12
{
13
Expression
<
D
>
e
=
delegate
()
{ return "a"; }
;
14
}
15
}