summaryrefslogtreecommitdiff
path: root/mcs/errors/cs1663.cs
blob: 6362eac47ba4b8a0422d3180a1801ca954c5d214 (plain)
1
2
3
4
5
6
7
// 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];
}