2010-06-03 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs0636-2.cs
blobf49380a548804cd6f1d310807f45f417ffdc657a
1 // CS0636: The FieldOffset attribute can only be placed on members of types marked with the StructLayout(LayoutKind.Explicit)
2 // Line: 10
4 using System;
5 using System.Runtime.InteropServices;
7 namespace cs0636 {
8 class GValue {
9 [FieldOffset (4)]
10 public const int value = 2;