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