blob: e33722878e73ab238b126f5e603fcf4d86f4e7d6 [file] [log] [blame]
Chris Lattner627ecea2003-10-17 05:20:51 +00001struct test {
2 bool A : 1;
3 bool B : 1;
4};
5
6void foo(test *T) {
7 T->B = true;
8}
9