/* bug3404101.c */ #include #ifdef __SDCC #pragma std_c99 #endif #include struct a { bool a : 1; }; void f(struct a *s) { 1 && s->a; // Compilation failed: Logical op with bitfield boolean. } void testBug(void) { }