2010-04-06 Jb Evain <jbevain@novell.com>
[mcs.git] / tests / test-anon-85.cs
blobcc263e7da51623df0d1905c8f24f6b28e8913e0d
1 // Compiler options: -unsafe
3 unsafe class X
5 delegate void D ();
7 static int Main ()
9 byte* a = null;
10 D d = delegate () {
11 byte* x = &*a;
14 return 0;