summaryrefslogtreecommitdiff
path: root/mcs/errors/cs1641.cs
blob: cde1dac9a963259aafa49cd267bbe635b9606547 (plain)
1
2
3
4
5
6
7
// CS1641: A fixed size buffer field must have the array size specifier after the field name
// Line: 6

public struct S
{
    fixed sbyte[] test;
}