blob: b3a2774c2eeddffab348be1b4ade4c9b7296139f [file] [log] [blame]
#include <inttypes.h>
struct S
{
union
{
uint64_t marker[0];
struct
{
uint64_t a;
uint64_t b;
};
};
uint64_t c;
};
void
func(struct S *s)
{
s->a = 1;
}