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