Make all traces explicitly support the CTF 1.8 spec
[ctf-testsuite.git] / tests / 1.8 / regression / metadata / fail / array-redefinition / metadata
1 /* CTF 1.8 */
2
3 typealias integer { size = 32; align = 8; signed = false; } := uint32_t;
4 typealias integer { size = 64; align = 8; signed = false; } := uint64_t;
5
6 typedef uint32_t array_type[10];
7
8 /* FAIL: type 'array_type' is already defined */
9 typedef uint64_t array_type[10];
10
11
12 trace {
13 major = 1;
14 minor = 8;
15 byte_order = le;
16 packet.header := struct {
17 uint32_t magic;
18 };
19 };
This page took 0.029971 seconds and 4 git commands to generate.