Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
llvm
/
31f841bc4853f086d4d537848623c4f8d10366e6
/
.
/
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
;
}