1 // PR c++/50280
2 
3 struct S { int bf : 3; };
4 
5 template<class _T1>
make_pair(_T1 & __x)6 void make_pair(_T1& __x) {}
7 
foo()8 void foo() {
9   const S s = S();
10   make_pair(s.bf);
11 }
12