1 // PR c++/43663
2 
3 struct S
4 {
SS5   S(): i(0) {}
6   int i : 3;
7 };
8 
9 S s;
10 
11 const int& cr(s.i);
12