https://issues.dlang.org/show_bug.cgi?id=24257
--- Comment #2 from Dennis <[email protected]> --- Looks like dustmite found another bug by reducing away the star from the type. Filed as issue 24259. Fixed test case: ``` typedef struct { unsigned : 15; _Bool done : 1; } S; _Bool advance() { S *n; if (n->done) {} } ``` --
