Merge pull request #5675 from mono/glib-debug-symbols
[mono.git] / mcs / errors / cs0636-2.cs
1 // CS0636: The FieldOffset attribute can only be placed on members of types marked with the StructLayout(LayoutKind.Explicit)
2 // Line: 10
3
4 using System;
5 using System.Runtime.InteropServices;
6
7 namespace CS0636 {
8         class GValue {
9                 [FieldOffset (4)] 
10                 public const int value = 2;
11         }
12 }