blob: fc302c3274e72b75f7e57a1671696bb8f1d070d1 [file] [log] [blame] [edit]
#include <stdarg.h>
#include <stdbool.h>
#include <stdint.h>
#include <stdlib.h>
enum Enum {
a,
b,
};
typedef uint8_t Enum;
typedef struct Struct {
Enum field;
} Struct;
extern const Enum STATIC;
void fn(struct Struct arg);