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
2010-04-15 Jb Evain <jbevain@novell.com>
[mcs.git]
/
errors
/
cs1686-5.cs
blob
67fe06a40486b8b5a564be9ca6387ed0bb6310bf
1
// CS1686: Local variable or parameter `a' cannot have their address taken and be used inside an anonymous method or lambda 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
int
*
y
= &
a
;
11
12
return delegate
{
13
int
x
=
a
;
14
};
15
}
16
}