1 // Compiler options: -unsafe
13 fixed (bool* data_ptr
= test
)
19 static bool Foo (int [] data
)
21 fixed (int* data_ptr
= data
)
23 return data_ptr
== null ? true : false;
27 public static int Main ()
32 if (!Foo (new int [0]))
35 if (!new Demo().Fixed ())
38 Console
.WriteLine ("OK");