Merge pull request #5675 from mono/glib-debug-symbols
[mono.git] / mcs / errors / cs0637.cs
1 // CS0637: The FieldOffset attribute is not allowed on static or const fields
2 // Line: 10
3
4 using System;
5 using System.Runtime.InteropServices;
6
7 [StructLayout(LayoutKind.Explicit)]
8 struct GValue {
9         [FieldOffset (4)]
10         public static int value = 3;
11 }