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