trisquel-icecat/icecat/third_party/cbindgen/tests/expectations/as_ty.cpp
2025-10-06 02:35:48 -06:00

21 lines
295 B
C++

#include <cstdarg>
#include <cstdint>
#include <cstdlib>
#include <ostream>
#include <new>
constexpr static const intptr_t SIZE = 4;
struct WithoutAs {
uint32_t items[SIZE];
};
struct WithAs {
uint32_t items[SIZE];
};
extern "C" {
void some_fn(WithoutAs a, WithAs b);
} // extern "C"