Sign in
gnu
/
gcc
/
1f16a020acbea0af26209478990b83b1a1ba3a2b
/
.
/
gcc
/
testsuite
/
g++.dg
/
conversion
/
bitfield4.C
blob: 75fe3016e14f3202896c911bd14724a82d21a85b [
file
] [
log
] [
blame
]
// PR c++/27292
enum
ColorRole
{
WindowText
,
Button
};
struct
QPalette
{
ColorRole
bg_role
:
8
;
bool
hasBackground
();
};
bool
QPalette
::
hasBackground
()
{
return
(
ColorRole
(
bg_role
)
!=
WindowText
);
}