New test.
[mono.git] / mcs / errors / cs1641.cs
1 // cs1641.cs: A fixed buffer field must have the array size specifier after the field name
2 // Line: 6
3
4 public struct S
5 {
6     fixed sbyte[] test;
7 }