#if 0 ''' ' #endif #ifdef __cplusplus template using Box = T*; #endif #if 0 ' ''' #endif #include #include #include #include enum A { a1 = 0, a2 = 2, a3, a4 = 5, }; typedef uint64_t A; enum B { b1 = 0, b2 = 2, b3, b4 = 5, }; typedef uint32_t B; enum C { c1 = 0, c2 = 2, c3, c4 = 5, }; typedef uint16_t C; enum D { d1 = 0, d2 = 2, d3, d4 = 5, }; typedef uint8_t D; enum E { e1 = 0, e2 = 2, e3, e4 = 5, }; typedef uintptr_t E; enum F { f1 = 0, f2 = 2, f3, f4 = 5, }; typedef intptr_t F; enum L { l1, l2, l3, l4, }; enum M { m1 = -1, m2 = 0, m3 = 1, }; typedef int8_t M; enum N { n1, n2, n3, n4, }; enum O { o1, o2, o3, o4, }; typedef int8_t O; struct J; struct K; struct Opaque; enum G_Tag { Foo, Bar, Baz, }; typedef uint8_t G_Tag; struct Bar_Body { G_Tag tag; uint8_t x; int16_t y; }; union G { G_Tag tag; struct { G_Tag foo_tag; int16_t foo; }; struct Bar_Body bar; }; enum H_Tag { H_Foo, H_Bar, H_Baz, }; struct H_Bar_Body { uint8_t x; int16_t y; }; struct H { enum H_Tag tag; union { struct { int16_t foo; }; struct H_Bar_Body bar; }; }; enum ExI_Tag { ExI_Foo, ExI_Bar, ExI_Baz, }; typedef uint8_t ExI_Tag; struct ExI_Bar_Body { uint8_t x; int16_t y; }; struct ExI { ExI_Tag tag; union { struct { int16_t foo; }; struct ExI_Bar_Body bar; }; }; enum P_Tag { P0, P1, }; typedef uint8_t P_Tag; struct P1_Body { uint8_t _0; uint8_t _1; uint8_t _2; }; struct P { P_Tag tag; union { struct { uint8_t p0; }; struct P1_Body p1; }; }; enum Q_Tag { Ok, Err, }; struct Q { enum Q_Tag tag; union { struct { uint32_t *ok; }; struct { uint32_t err; }; }; }; enum R_Tag { IRFoo, IRBar, IRBaz, }; struct IRBar_Body { uint8_t x; int16_t y; }; struct R { enum R_Tag tag; union { struct { int16_t IRFoo; }; struct IRBar_Body IRBar; }; }; void root(struct Opaque *opaque, A a, B b, C c, D d, E e, F f, union G g, struct H h, struct ExI i, struct J j, struct K k, enum L l, M m, enum N n, O o, struct P p, struct Q q, struct R r); #if 0 ''' ' #endif #include #include "testing-helpers.h" static_assert(offsetof(CBINDGEN_STRUCT(P), tag) == 0, "unexpected offset for tag"); static_assert(offsetof(CBINDGEN_STRUCT(P), p0) == 1, "unexpected offset for p0"); static_assert(offsetof(CBINDGEN_STRUCT(P), p0) == 1, "unexpected offset for p1"); static_assert(sizeof(CBINDGEN_STRUCT(P)) == 4, "unexpected size for P"); #if 0 ' ''' #endif