blob: 41dde1b1e83d572faf84bd4d5adca5ddcd06a309 [file] [log] [blame]
#include <cstdarg>
#include <cstdint>
#include <cstdlib>
#include <ostream>
#include <new>
struct A;
struct B;
template<typename T>
struct List {
T *members;
uintptr_t count;
};
extern "C" {
void foo(List<A> a);
void bar(List<B> b);
} // extern "C"