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: 8da2dc695db7e840928722de6db7325fa87e1219 (plain)
1
2
3
4
5
6
7
// cs1663.cs: `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];
}