[xbuild] More tweaks for portable debug mode
[mono-project.git] / mcs / errors / cs0636.cs
blob3b09bd7603c3ef3adbe02597faf70d2a6614aa69
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 struct GValue {
9 public string name;
10 [ FieldOffset (4) ] public int value;
13 class Tests {
14 public static void Main () {