1 #include <stdarg.h>
2 #include <stdbool.h>
3 #include <stdint.h>
4 #include <stdlib.h>
5 
6 typedef struct {
7   const int32_t *something;
8 } Foo_Bar;
9 
10 typedef union {
11   int32_t something;
12   Foo_Bar subexpressions;
13 } Bar;
14 
15 void root(Bar b);
16