1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-18 10:32:48 +02:00

New testcase for C++ frontend crash

llvm-svn: 9192
This commit is contained in:
Chris Lattner 2003-10-17 05:20:51 +00:00
parent 17f8f2e317
commit 080cafcc0e

View File

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