blob: e33722878e73ab238b126f5e603fcf4d86f4e7d6 [file] [log] [blame]
struct test {
bool A : 1;
bool B : 1;
};
void foo(test *T) {
T->B = true;
}