blob: 60b8e028859d62b3a1ab3effd10907cc75c9261b [file] [log] [blame]
#include <cstdarg>
#include <cstdint>
#include <cstdlib>
#include <ostream>
#include <new>
enum class Enum : uint8_t {
a,
b,
};
struct Struct {
Enum field;
};
extern "C" {
extern const Enum STATIC;
void fn(Struct arg);
} // extern "C"