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

cs1641.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 14d9f6cdfd60abe9358c65de3c1a265f3f87b86a (plain)
1
2
3
4
5
6
7
// cs1641.cs: A fixed buffer field must have the array size specifier after the field name
// Line: 6

public struct S
{
    fixed sbyte[] test;
}