Make all traces explicitly support the CTF 1.8 spec
[ctf-testsuite.git] / tests / 1.8 / regression / metadata / pass / struct-underscores-in-fields / metadata
1 /* CTF 1.8 */
2
3 typealias integer { size = 32; align = 8; signed = false; } := uint32_t;
4
5 /* PASS: 'field' and '_field' should be different fields */
6 struct dummy {
7 uint32_t field;
8 uint32_t _field;
9 uint32_t __field;
10 };
11
12
13 trace {
14 major = 1;
15 minor = 8;
16 byte_order = le;
17 packet.header := struct {
18 uint32_t magic;
19 };
20 };
This page took 0.02995 seconds and 4 git commands to generate.