Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gtest-fixedbuffer-09.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 146157644251665e20dde610cfb2cb5e7d397fe8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
// Compiler options: -unsafe

using System;
using System.Runtime.CompilerServices;

unsafe struct Foo
{
	public fixed long FieldName[32];
}

class Test
{
	public static int Main ()
	{
		var t = typeof (Foo);
		var f = t.GetField ("FieldName");
		var fbas = f.GetCustomAttributes (typeof (FixedBufferAttribute), true)[0] as FixedBufferAttribute;
		if (fbas.Length != 32)
			return 1;

		var fixed_type = typeof (Foo).GetNestedTypes ()[0];
		if (fixed_type.StructLayoutAttribute.Pack != 8)
			return 2;

		if (fixed_type.StructLayoutAttribute.Size != 256)
			return 3;

		return 0;
	}
}