Make all traces explicitly support the CTF 1.8 spec
[ctf-testsuite.git] / tests / 1.8 / regression / metadata / pass / struct-unamed-struct-as-field / metadata
1 /* CTF 1.8 */
2
3 typealias integer { size = 32; align = 8; signed = false; } := int;
4
5 /* PASS: unnamed struct type used as field */
6 struct dummy {
7 int normal_field;
8 struct {
9 int sub_field1;
10 int sub_field2;
11 } x;
12 };
13
14
15 trace {
16 major = 1;
17 minor = 8;
18 byte_order = le;
19 packet.header := struct {
20 int magic;
21 };
22 };
This page took 0.029304 seconds and 4 git commands to generate.