blob: 547a367d34e6ad4abdba9ea292b3a6e4d20d5ac2 [file] [log] [blame]
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001// RUN: %llvmgxx -S %s -o - | llvm-as -f -o /dev/null
2
3struct test {
4 bool A : 1;
5 bool B : 1;
6};
7
8void foo(test *T) {
9 T->B = true;
10}
11