1 // Compiler options: -unsafe -langversion:latest
5 public static void Main ()
7 fixed (int* p
= new Fixable ()) {
8 System
.Console
.WriteLine (*p
);
9 System
.Console
.WriteLine (p
[2]);
15 public ref int GetPinnableReference ()
17 return ref (new int[] { 1, 2, 3 }
)[0];