Add error cs0121
[mono.git] / mcs / errors / bug3.cs
1 using System.Runtime.InteropServices;
2
3 [StructLayout (LayoutKind.Explicit)]
4 struct A {
5         [FieldOffset (0)]
6         public int a;
7         [FieldOffset (4)]
8         public int b;
9 }
10
11 class X {
12         static void Main ()
13         {
14         }
15 }
16