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
[System.Data] Try to fix random DataViewTest.DefaultColumnNameAddListChangedTest...
[mono-project.git]
/
mcs
/
errors
/
cs1951.cs
blob
c1040f83efd2e31e970b2f1ca6ce75e900f0527e
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
(
ref int
a
);
10
11
public static void
Main
()
12
{
13
Expression
<
D
>
e
= (
ref int
a
) =>
a
;
14
}
15
}