blob: 30b959c5a7508f557d7b047aa7a7240abf53c887 [file] [log] [blame]
#include <cstdarg>
#include <cstdint>
#include <cstdlib>
#include <ostream>
#include <new>
enum class Bar {
BarSome,
BarThing,
};
template<typename T>
struct Foo {
T a;
};
using Boo = Foo<uint8_t>;
extern "C" {
void root(Boo x, Bar y);
} // extern "C"