(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.dg/
warn/
Wparentheses-28.C
// PR bootstrap/68361
// { dg-options -Wparentheses }

struct A
{
  int p: 2;
};

A a, b;

int main()
{
  bool t = (a.p = b.p);
}