eb05c32827771c6a3dee3751a8b7117397f4479e
[ctf-testsuite.git] / tests / 1.9 / fail / types22 / metadata
1 /* CTF 1.8 */
2
3 typealias integer { size = 32; align = 8; signed = false; } := uint32_t;
4
5 /* FAIL: duplicate name. */
6 struct a {
7 uint32_t xxx;
8 };
9
10 struct a {
11 uint32_t xxx;
12 };
13
14 trace {
15 major = 2;
16 minor = 1;
17 byte_order = le;
18 packet.header := struct {
19 uint32_t magic;
20 };
21 };
22
23
This page took 0.029975 seconds and 3 git commands to generate.