Make all traces explicitly support the CTF 1.8 spec
[ctf-testsuite.git] / tests / 1.8 / regression / metadata / fail / struct-duplicate-field-name / metadata
CommitLineData
5a8b5950
CB
1/* CTF 1.8 */
2
3typealias integer { size = 32; align = 8; signed = false; } := uint32_t;
4
5/* FAIL: duplicate name */
6struct dummy {
7 uint32_t xxx;
8 uint32_t xxx;
9};
10
11trace {
83fcdab0
FD
12 major = 1;
13 minor = 8;
5a8b5950
CB
14 byte_order = le;
15 packet.header := struct {
16 uint32_t magic;
17 };
18};
19
20
This page took 0.024096 seconds and 4 git commands to generate.