blob: 0ca252926119082f254df0f1078fd2668864447d [file] [log] [blame]
#include <cstdarg>
#include <cstdint>
#include <cstdlib>
#include <ostream>
#include <new>
template<uintptr_t N>
struct Inner {
uint8_t bytes[N];
};
template<uintptr_t N>
struct Outer {
Inner<N> inner;
};
extern "C" {
Outer<1> one();
Outer<2> two();
} // extern "C"