[ilasm] Don't break arguments compatiblity
[mono-project.git] / mcs / tests / test-anon-85.cs
blobe8d585df8bcf541c5917a683a82efa2444b6eeb1
1 // Compiler options: -unsafe
3 unsafe class X
5 delegate void D ();
7 public static int Main ()
9 byte* a = null;
10 D d = delegate () {
11 byte* x = &*a;
14 return 0;