blob: 71408c82156b47b8443ae461f54de7209279b598 [file] [log] [blame]
#include <stdarg.h>
#include <stdbool.h>
#include <stdint.h>
#include <stdlib.h>
typedef enum Bar {
BarSome,
BarThing,
} Bar;
typedef struct FooU8 {
uint8_t a;
} FooU8;
typedef struct FooU8 Boo;
void root(Boo x, enum Bar y);