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-05-29 Steven Munroe <munroesj@us.ibm.com>
[mcs.git]
/
errors
/
cs1686-2.cs
blob
69699b6db2bbceb59bd10190d928f6ddacecf009
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
return delegate
{
11
int
*
x
= &
a
;
12
};
13
}
14
15
static void
Main
()
16
{ }
17
}