2005-04-12 Dick Porter <dick@ximian.com>
[mono.git] / mcs / errors / cs0636.cs
1 // CS0636: The FieldOffset attribute can only be placed on members of types marked with the StructLayout(LayoutKind.Explicit)
2
3 using System;
4 using System.Runtime.InteropServices;
5
6 namespace cs0636 {
7         struct GValue {
8                 public string name;
9                 [ FieldOffset (4) ] public int value;
10         }
11         
12         class Tests {
13                 public static void Main () {
14                 }
15         }
16 }