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
2009-06-26 Zoltan Varga <vargaz@gmail.com>
[mcs.git]
/
errors
/
gcs1945.cs
blob
1f70335cdc1486dfa9767ebc493190b966c19ac6
1
// CS1945: An expression tree cannot contain an anonymous method expression
2
// Line: 11
3
4
using
System
;
5
using
System
.
Linq
.
Expressions
;
6
7
class
C
8
{
9
public static void
Main
()
10
{
11
Expression
<
Func
<
Func
<
int
>>>
e
= () =>
delegate
()
{ return 1; }
;
12
}
13
}