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

cs1644-3.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f9413da9d0f75dcf720dd3a47fed0e4a8fcfa827 (plain)
1
2
3
4
5
6
7
// Feature 'fixed sized buffers' cannot be used because it is not part of the standardized ISO C# language specificatio
// Line: 6
// Compiler options: -langversion:ISO-1

struct S {
    fixed long buffer [5];
}