Files
cbindgen/tests/expectations/monomorph-2.cpp
T
2019-01-03 09:46:55 -06:00

22 lines
226 B
C++

#include <cstdarg>
#include <cstdint>
#include <cstdlib>
struct A;
struct B;
template<typename T>
struct List {
T *members;
uintptr_t count;
};
extern "C" {
void bar(List<B> b);
void foo(List<A> a);
} // extern "C"