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
[interp] Reduce computation under calc_section mutex
[mono-project.git]
/
mcs
/
tests
/
test-anon-85.cs
blob
e8d585df8bcf541c5917a683a82efa2444b6eeb1
1
// Compiler options: -unsafe
2
3
unsafe class
X
4
{
5
delegate void
D
();
6
7
public static int
Main
()
8
{
9
byte
*
a
=
null
;
10
D d
=
delegate
() {
11
byte
*
x
= &*
a
;
12
};
13
14
return
0
;
15
}
16
}