https://issues.dlang.org/show_bug.cgi?id=23293
Walter Bright <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |[email protected] --- Comment #1 from Walter Bright <[email protected]> --- Simpler test case: struct S { unsigned d:31; _Bool e:1; }; _Static_assert(sizeof(struct S) == 4, "size != 4"); // 8 with DMD --
