Sign in
gnu
/
gcc
/
1f16a020acbea0af26209478990b83b1a1ba3a2b
/
.
/
gcc
/
testsuite
/
g++.old-deja
/
g++.jason
/
bool2.C
blob: e77bd848725e69c3a911613e94102372f1c217ba [
file
] [
log
] [
blame
]
// { dg-do run }
// Make sure that bool bitfields promote to int properly.
struct
F
{
bool
b1
:
1
;
bool
b2
:
7
;
};
int
main
()
{
F f
=
{
true
,
true
};
if
(
int
(
f
.
b1
)
!=
1
)
return
1
;
}