New testcase for C++ frontend crash
[oota-llvm.git] / test / C++Frontend / 2003-10-17-BoolBitfields.cpp
1 struct test {
2   bool A : 1;
3   bool B : 1;
4 };
5
6 void foo(test *T) {
7   T->B = true;
8 }
9