Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
llvm
/
e7e3f2e5cd786f6cca267210b3d185b2a4a037bd
/
.
/
test
/
C++Frontend
/
2003-10-17-BoolBitfields.cpp
blob: e33722878e73ab238b126f5e603fcf4d86f4e7d6 [
file
] [
log
] [
blame
]
struct
test
{
bool
A
:
1
;
bool
B
:
1
;
};
void
foo
(
test
*
T
)
{
T
->
B
=
true
;
}