blob: 547a367d34e6ad4abdba9ea292b3a6e4d20d5ac2 [file] [log] [blame]
Tanya Lattnerd13e0ae2004-11-06 22:29:57 +00001// RUN: %llvmgxx -S %s -o - | llvm-as -f -o /dev/null
2
Chris Lattner627ecea2003-10-17 05:20:51 +00003struct test {
4 bool A : 1;
5 bool B : 1;
6};
7
8void foo(test *T) {
9 T->B = true;
10}
11