mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2026-01-31 01:35:20 +01:00
10 lines
84 B
C++
10 lines
84 B
C++
struct test {
|
|
bool A : 1;
|
|
bool B : 1;
|
|
};
|
|
|
|
void foo(test *T) {
|
|
T->B = true;
|
|
}
|
|
|