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
[loader] LoadFrom of problematic images should reprobe
[mono-project.git]
/
mcs
/
errors
/
cs0832-2.cs
blob
2d0434823381111fc9872a673938e9a9c1317cfb
1
// CS0832: An expression tree cannot contain an assignment operator
2
// Line: 13
3
4
using
System
;
5
using
System
.
Linq
.
Expressions
;
6
7
class
C
8
{
9
delegate void
D
(
string
s
);
10
11
public static void
Main
()
12
{
13
Expression
<
D
>
e
= (
a
) =>
a
=
"a"
;
14
}
15
}