2021-08-24 11:44:51 +02:00

24 lines
264 B
C++

#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"