EncoderReplacementFallbackBuffer.Reset() did not really reset its internals.
[mono-project/dkf.git] / mcs / tests / test-808.cs
blob440186210d9487178fc8906b401e0a546f0977e9
1 // Compiler options: -unsafe
3 using System;
5 unsafe class Program
7 unsafe static int Main ()
9 float* to = stackalloc float[2];
10 to[0] = to[1] = float.MaxValue;
11 if (to[0] != float.MaxValue)
12 return 1;
14 if (to[1] != float.MaxValue)
15 return 2;
17 return 0;