2d60c33a9ee87ef42393297ad6c1b304b8503ce9
[ctf-testsuite.git] / tests / 1.9 / fail / types06 / metadata
1 /* CTF 1.8 */
2
3 typealias integer { size = 32; align = 8; signed = false; } := uint32_t;
4
5 /* FAIL: negative align. */
6 typealias integer { size = 8; align = -8; signed = false; } := uint8_t;
7
8 trace {
9 major = 2;
10 minor = 1;
11 byte_order = le;
12 packet.header := struct {
13 uint32_t magic;
14 };
15 };
This page took 0.030082 seconds and 3 git commands to generate.