Make all traces explicitly support the CTF 1.8 spec
[ctf-testsuite.git] / tests / 1.8 / regression / metadata / fail / typedef-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 /* Fail: duplicate typedef */
7 typedef uint32_t myint;
8 typedef uint64_t myint;
9
10 trace {
11 major = 1;
12 minor = 8;
13 byte_order = le;
14 packet.header := struct {
15 uint32_t magic;
16 };
17 };
This page took 0.030681 seconds and 4 git commands to generate.