(DISTFILES): Comment out a few missing files.
[mono-project.git] / mcs / errors / cs0637.cs
blob1a99b5a98b6bfccfa622551d36781aa8ebd05a61
1 // CS0636: 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;