Sign in
gnu
/
gcc
/
d769c5040874bf9546f2524f3f1d2a894165f92a
/
.
/
gcc
/
testsuite
/
g++.dg
/
warn
/
Wparentheses-28.C
blob: f6636cbc6b84bbb065f469932b55190823f15a36 [
file
] [
log
] [
blame
]
// PR bootstrap/68361
// { dg-options -Wparentheses }
struct
A
{
int
p
:
2
;
};
A a
,
b
;
int
main
()
{
bool
t
=
(
a
.
p
=
b
.
p
);
}