17 lines
183 B
C#
Raw Permalink Normal View History

// Compiler options: -unsafe
unsafe class X
{
delegate void D ();
public static int Main ()
{
byte* a = null;
D d = delegate () {
byte* x = &*a;
};
return 0;
}
}