Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cs1663.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
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];
}