aboutsummaryrefslogtreecommitdiff
path: root/test/C++Frontend/2003-10-17-BoolBitfields.cpp
blob: e33722878e73ab238b126f5e603fcf4d86f4e7d6 (plain)
1
2
3
4
5
6
7
8
9
struct test {
  bool A : 1;
  bool B : 1;
};

void foo(test *T) {
  T->B = true;
}