linux-packaging-mono/mcs/tests/test-anon-85.cs

17 lines
183 B
C#
Raw 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;
}
}