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: 4812fce492e93f1a9c37aca2913f8964b6984281 (plain)
1
2
3
4
5
6
7
// cs1663.cs: Fixed sized buffer 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];
}