Make all traces explicitly support the CTF 1.8 spec
[ctf-testsuite.git] / tests / 1.8 / regression / metadata / fail / struct-recursive / metadata
1 /* CTF 1.8 */
2
3 typealias integer { size = 32; align = 8; signed = false; } := uint32_t;
4
5 /* FAIL: structure containing itself */
6 struct dummy {
7 uint32_t field1;
8 struct dummy field2;
9 };
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.028913 seconds and 4 git commands to generate.