20 lines
281 B
C#
Raw Permalink Normal View History

// Compiler options: -unsafe
using System;
unsafe class Program
{
unsafe public static int Main ()
{
float* to = stackalloc float[2];
to[0] = to[1] = float.MaxValue;
if (to[0] != float.MaxValue)
return 1;
if (to[1] != float.MaxValue)
return 2;
return 0;
}
}