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-05 Jb Evain <jbevain@novell.com>
[mcs.git]
/
errors
/
gcs1951-2.cs
blob
615d2cf2e114e8cae22f088cc3ea8f895bcc8c44
1
// CS1951: An expression tree parameter cannot use `ref' or `out' modifier
2
// Line: 13
3
4
using
System
;
5
using
System
.
Linq
.
Expressions
;
6
7
class
C
8
{
9
delegate int
D
(
out int
a
);
10
11
public static void
Main
()
12
{
13
Expression
<
D
>
e
= (
out int
a
) =>
a
=
0
;
14
}
15
}