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