[interp] Fall back to old implementation when calling on proxy
[mono-project.git] / mcs / errors / cs0637.cs
blobcbca67d4ab4607a490365a43780ff887a2739e14
1 // CS0637: The FieldOffset attribute is not allowed on static or const fields
2 // Line: 10
4 using System;
5 using System.Runtime.InteropServices;
7 [StructLayout(LayoutKind.Explicit)]
8 struct GValue {
9 [FieldOffset (4)]
10 public static int value = 3;