index
:
external_llvm.git
replicant-6.0
Unnamed repository; edit this file 'description' to name the repository.
git repository hosting
about
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
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
;
}