blob: cbca67d4ab4607a490365a43780ff887a2739e14 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
// CS0637: The FieldOffset attribute is not allowed on static or const fields
// Line: 10
using System;
using System.Runtime.InteropServices;
[StructLayout(LayoutKind.Explicit)]
struct GValue {
[FieldOffset (4)]
public static int value = 3;
}
|