1 // PR bootstrap/68361
2 // { dg-options -Wparentheses }
3 
4 struct A
5 {
6   int p: 2;
7 };
8 
9 A a, b;
10 
main()11 int main()
12 {
13   bool t = (a.p = b.p);
14 }
15