summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0625-1.cs
blob: ab82c630caeb3a396acfe75014756fd981bc5c51 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// CS0625: `CS0625.GValue.foo': Instance field types marked with StructLayout(LayoutKind.Explicit) must have a FieldOffset attribute
// Line: 10

using System;
using System.Runtime.InteropServices;

namespace CS0625 {
	[StructLayout(LayoutKind.Explicit)]
	class GValue {
		public int foo;
	}
	
	class Tests {
		public static void Main () {
		}
	}
}