1 // PR c++/82357
2 
3 template <typename> struct A {
AA4   A() { x |= 0; }
5   int x : 8;
6 };
7