80da1f59aa
Opt-in since it uses a C++17 feature, but this allow exactly the same usage in C++ and Rust, which I think is nice. This also fixes constants of transparent structs in general, since the initial version of this patch broke a test (associated constants in enums), so I added a test for that too.
16 lines
193 B
C++
16 lines
193 B
C++
#include <cstdarg>
|
|
#include <cstdint>
|
|
#include <cstdlib>
|
|
|
|
struct Foo {
|
|
|
|
};
|
|
static const int32_t Foo_GA = 10;
|
|
static const float Foo_ZO = 3.14;
|
|
|
|
extern "C" {
|
|
|
|
void root(Foo x);
|
|
|
|
} // extern "C"
|