blob: 083dabdd121b845fadb0655483c026d15fa38312 [file] [log] [blame]
#include <stdarg.h>
#include <stdbool.h>
#include <stdint.h>
#include <stdlib.h>
typedef struct {
const int32_t *something;
} Foo_Bar;
typedef union {
int32_t something;
Foo_Bar subexpressions;
} Bar;
void root(Bar b);