blob: 23db2d4a34cce8a22e2f56d0074d5f9ce2dff286 [file] [log] [blame]
// PR c++/43663
struct S
{
S(): i(0) {}
int i : 3;
};
S s;
const int& cr(s.i);