summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0636-2.cs
blob: 34ee788101f6a46ab11dc9b2e19a067d2a8c0d2e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// CS0636: The FieldOffset attribute can only be placed on members of types marked with the StructLayout(LayoutKind.Explicit)
// Line: 10

using System;
using System.Runtime.InteropServices;

namespace CS0636 {
	class GValue {
		[FieldOffset (4)] 
                public const int value = 2;
	}
}