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
Merge pull request #1821 from iainx/replace-getline
[mono-project.git]
/
mcs
/
errors
/
cs1686-4.cs
blob
1cbfd8e06bfb6d57e0fbd9e29f99f674550b16d5
1
// CS1686: Local variable or parameter `a' cannot have their address taken and be used inside an anonymous method, lambda expression or query expression
2
// Line: 11
3
// Compiler options: -unsafe
4
5
delegate void
D
();
6
7
unsafe class
X
{
8
public
D
T
(
int
a
)
9
{
10
return delegate
{
11
int
x
=
a
;
12
};
13
14
int
*
y
= &
a
;
15
}
16
}