1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
#include <cstdarg>
#include <cstdint>
#include <cstdlib>
#include <ostream>
#include <new>
struct Bar;
struct Foo {
int32_t a;
uint32_t b;
};
constexpr static const Foo Foo_FOO = Foo{
/* .a = */ 42,
/* .b = */ 47
};
constexpr static const Foo Foo_FOO2 = Foo{
/* .a = */ 42,
/* .b = */ 47
};
constexpr static const Foo Foo_FOO3 = Foo{
/* .a = */ 42,
/* .b = */ 47
};
constexpr static const Foo BAR = Foo{
/* .a = */ 42,
/* .b = */ 1337
};
extern "C" {
void root(Foo x, Bar bar);
} // extern "C"