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.
15 lines
281 B
C
15 lines
281 B
C
#include <stdarg.h>
|
|
#include <stdbool.h>
|
|
#include <stdint.h>
|
|
#include <stdlib.h>
|
|
|
|
typedef struct PREFIXFoo {
|
|
int32_t a;
|
|
uint32_t b;
|
|
} PREFIXFoo;
|
|
#define PREFIXFoo_FOO (PREFIXFoo){ .a = 42, .b = 47 }
|
|
|
|
#define PREFIXBAR (PREFIXFoo){ .a = 42, .b = 1337 }
|
|
|
|
void root(PREFIXFoo x);
|