blob: ccfc56fe596c1c32dc5cf5a6a3e0ff722e8aafcd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
// CS0625: `CS0625.GValue.name': Instance field types marked with StructLayout(LayoutKind.Explicit) must have a FieldOffset attribute
// Line: 11
using System;
using System.Runtime.InteropServices;
namespace CS0625 {
[StructLayout(LayoutKind.Explicit)]
struct GValue {
public string name;
[ FieldOffset (4) ] public int value;
}
class Tests {
public static void Main () {
}
}
}
|