cleol
[mcs.git] / errors / cs0625-2.cs
blobdb7f26a8781bf57a602f59e6c76b67f63445d24f
1 // cs0625-2.cs: `cs0625.GValue.foo': Instance field types marked with StructLayout(LayoutKind.Explicit) must have a FieldOffset attribute
2 // Line: 10
4 using System;
5 using System.Runtime.InteropServices;
7 namespace cs0625 {
8 [StructLayout(LayoutKind.Explicit)]
9 partial class GValue {
10 public int foo;
13 class Tests {
14 public static void Main () {