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
[cominterop] Default to [in] parameter direction when not specified explicitly.
[mono-project.git]
/
mcs
/
errors
/
cs8149-2.cs
blob
3514769c702de66c8190942c54727077c930786c
1
// CS8149: By-reference returns can only be used in lambda expressions that return by reference
2
// Line: 12
3
4
using
System
;
5
6
class
A
7
{
8
int
p
;
9
10
void
Test
()
11
{
12
Action a
= () =>
ref
p
;
13
}
14
}