1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-28 22:42:52 +01:00
llvm-mirror/test/Regression/C++Frontend/2003-10-17-BoolBitfields.cpp
Chris Lattner 080cafcc0e New testcase for C++ frontend crash
llvm-svn: 9192
2003-10-17 05:20:51 +00:00

10 lines
84 B
C++

struct test {
bool A : 1;
bool B : 1;
};
void foo(test *T) {
T->B = true;
}