[mcs] Consider method candidates with misplaced named arguments not applicable. Fixes...
[mono.git] / mcs / errors / cs1663.cs
1 // CS1663: `S.test': Fixed size buffers type must be one of the following: bool, byte, short, int, long, char, sbyte, ushort, uint, ulong, float or double
2 // Line: 6
3
4 public struct S
5 {
6     public fixed decimal test [4];
7 }