blob: 0d08f0dc8ac8e69d2c3b83e90f7058e89a04eefb [file] [log] [blame]
typedef struct {
unsigned long bits;
} S;
struct T {
S span;
int flags;
};
struct T f(int x)
{
return (struct T) {
.span = (S) { 0UL },
.flags = (x ? 256 : 0),
};
}