8 lines
222 B
C#
Raw Permalink Normal View History

// CS1663: `S.test': Fixed size buffers type must be one of the following: bool, byte, short, int, long, char, sbyte, ushort, uint, ulong, float or double
// Line: 6
public struct S
{
public fixed decimal test [4];
}