blob: 547a367d34e6ad4abdba9ea292b3a6e4d20d5ac2 [file] [log] [blame]
// RUN: %llvmgxx -S %s -o - | llvm-as -f -o /dev/null
struct test {
bool A : 1;
bool B : 1;
};
void foo(test *T) {
T->B = true;
}